@iblai/data-layer 0.0.5 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +65009 -23
- package/dist/index.esm.js +29131 -16819
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +29475 -16817
- package/dist/index.js.map +1 -1
- package/dist/package.json +84 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +3357 -0
- package/dist/src/features/analytics/constants.d.ts +121 -0
- package/dist/src/features/analytics/types.d.ts +426 -0
- package/dist/src/features/api-keys/api-slice.d.ts +94 -34
- package/dist/{features/api-keys → src/features/apps}/api-slice.d.ts +156 -78
- package/dist/src/features/auth/api-slice.d.ts +639 -0
- package/dist/src/features/auth/constants.d.ts +20 -0
- package/dist/src/features/auth/types.d.ts +33 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/src/features/career/api-slice.d.ts +2852 -0
- package/dist/src/features/catalog/api-slice.d.ts +8618 -1
- package/dist/src/features/chat/api-slice.d.ts +1567 -32
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/{features/core → src/features/chat-files}/api-slice.d.ts +47 -26
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +518 -244
- package/dist/src/features/core/api-slice.d.ts +4261 -5
- package/dist/src/features/core/constants.d.ts +47 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +2343 -84
- package/dist/src/features/credentials/constants.d.ts +28 -0
- package/dist/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/src/features/credentials/types.d.ts +16 -0
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +352 -43
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +89 -23
- package/dist/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +4126 -146
- package/dist/src/features/mentor/constants.d.ts +39 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +796 -0
- package/dist/src/features/mentor/types.d.ts +77 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +463 -23
- package/dist/src/features/notifications/api-slice.d.ts +1600 -0
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +944 -70
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +1357 -73
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/{features/prompts/api-slice.d.ts → src/features/search/ai-search-api-slice.d.ts} +161 -160
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/src/features/skills/api-slice.d.ts +505 -65
- package/dist/src/features/stripe/api-slice.d.ts +781 -0
- package/dist/src/features/stripe/constants.d.ts +19 -0
- package/dist/src/features/stripe/types.d.ts +19 -0
- package/dist/src/features/tenant/api-slice.d.ts +261 -47
- package/dist/src/features/tenant/constants.d.ts +1 -1
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/src/features/tools/api-slice.d.ts +133 -23
- package/dist/src/features/training-documents/api-slice.d.ts +731 -52
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +32 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +346 -56
- package/dist/src/features/utils.d.ts +31 -8
- package/dist/src/index.d.ts +78 -23
- package/dist/src/reducers/index.d.ts +1 -0
- package/dist/src/reducers/mentor.d.ts +2 -120
- package/dist/src/reducers/skills.d.ts +2 -0
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/src/utils/index.d.ts +2 -2
- package/dist/tests/features/analytics/api-slice.test.d.ts +1 -0
- package/dist/tests/features/analytics/constants.test.d.ts +1 -0
- package/dist/tests/features/user/api-slice.test.d.ts +1 -0
- package/dist/tests/features/user/constants.test.d.ts +1 -0
- package/dist/tests/setupTests.d.ts +1 -0
- package/package.json +26 -15
- package/dist/config.d.ts +0 -5
- package/dist/constants.d.ts +0 -31
- package/dist/core/index.d.ts +0 -4
- package/dist/features/chat/api-slice.d.ts +0 -1278
- package/dist/features/chat/chat-slice.d.ts +0 -15
- package/dist/features/chat-history/api-slice.d.ts +0 -956
- package/dist/features/chat-history/constants.d.ts +0 -3
- package/dist/features/credentials/api-slice.d.ts +0 -531
- package/dist/features/datasets/api-slice.d.ts +0 -267
- package/dist/features/index.d.ts +0 -1
- package/dist/features/llms/api-slice.d.ts +0 -267
- package/dist/features/mentor/api-slice.d.ts +0 -1816
- package/dist/features/mentor-categories/api-slice.d.ts +0 -267
- package/dist/features/platform/api-slice.d.ts +0 -735
- package/dist/features/skills/api-slice.d.ts +0 -795
- package/dist/features/tenant/api-slice.d.ts +0 -536
- package/dist/features/tenant/constants.d.ts +0 -11
- package/dist/features/tenant/types.d.ts +0 -18
- package/dist/features/tools/api-slice.d.ts +0 -267
- package/dist/features/training-documents/api-slice.d.ts +0 -750
- package/dist/features/user/api-slice.d.ts +0 -751
- package/dist/features/user/constants.d.ts +0 -19
- package/dist/features/user/types.d.ts +0 -64
- package/dist/features/user-invitations/api-slice.d.ts +0 -428
- package/dist/features/utils.d.ts +0 -46
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiError.d.ts +0 -10
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiRequestOptions.d.ts +0 -13
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiResult.d.ts +0 -7
- package/dist/node_modules/@iblai/iblai-api/src/core/CancelablePromise.d.ts +0 -20
- package/dist/node_modules/@iblai/iblai-api/src/core/OpenAPI.d.ts +0 -16
- package/dist/node_modules/@iblai/iblai-api/src/core/request.d.ts +0 -30
- package/dist/reducers/index.d.ts +0 -1
- package/dist/reducers/mentor.d.ts +0 -135
- package/dist/services/StorageService.d.ts +0 -5
- package/dist/src/features/chat-history/constants.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -2
- /package/dist/{features/catalog/api-slice.d.ts → src/__tests__/constants.test.d.ts} +0 -0
- /package/dist/{features → src/features}/constants.d.ts +0 -0
|
@@ -1,10 +1,74 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
interface GetPromptCategoriesParams {
|
|
2
|
+
org: string;
|
|
3
|
+
user_id: string;
|
|
4
|
+
filterBy?: string;
|
|
5
|
+
}
|
|
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
|
+
getPrompts: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
9
|
+
org: string;
|
|
10
|
+
category?: number;
|
|
11
|
+
createdBy?: string;
|
|
12
|
+
filterBy?: string;
|
|
13
|
+
mentorUniqueId?: string;
|
|
14
|
+
tag?: number;
|
|
15
|
+
visibility?: string;
|
|
16
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>;
|
|
17
|
+
getPromptsSearch: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
18
|
+
org: string;
|
|
19
|
+
username: string;
|
|
20
|
+
alphabetical?: boolean;
|
|
21
|
+
category?: string;
|
|
22
|
+
createdBy?: string;
|
|
23
|
+
filterFacet?: boolean;
|
|
24
|
+
language?: string;
|
|
25
|
+
limit?: number;
|
|
26
|
+
mentor?: string;
|
|
27
|
+
offset?: number;
|
|
28
|
+
orderDirection?: string;
|
|
29
|
+
query?: string;
|
|
30
|
+
sortBy?: string;
|
|
31
|
+
style?: string;
|
|
32
|
+
tenant?: string;
|
|
33
|
+
tone?: string;
|
|
34
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>;
|
|
35
|
+
createPrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
36
|
+
org: string;
|
|
37
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
38
|
+
category?: number;
|
|
39
|
+
createdBy?: string;
|
|
40
|
+
filterBy?: string;
|
|
41
|
+
mentorUniqueId?: string;
|
|
42
|
+
tag?: number;
|
|
43
|
+
visibility?: string;
|
|
44
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>;
|
|
45
|
+
updatePrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
46
|
+
id: number;
|
|
47
|
+
org: string;
|
|
48
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
49
|
+
category?: number;
|
|
50
|
+
createdBy?: string;
|
|
51
|
+
filterBy?: string;
|
|
52
|
+
mentorUniqueId?: string;
|
|
53
|
+
tag?: number;
|
|
54
|
+
visibility?: string;
|
|
55
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>;
|
|
56
|
+
deletePrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
57
|
+
id: number;
|
|
58
|
+
org: string;
|
|
59
|
+
category?: number;
|
|
60
|
+
createdBy?: string;
|
|
61
|
+
filterBy?: string;
|
|
62
|
+
mentorUniqueId?: string;
|
|
63
|
+
tag?: number;
|
|
64
|
+
visibility?: string;
|
|
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>;
|
|
66
|
+
getGuidedPrompts: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
67
|
+
org: string;
|
|
68
|
+
sessionId: string;
|
|
69
|
+
count?: number;
|
|
70
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>;
|
|
71
|
+
}, "promptsApiSlice", "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
8
72
|
export declare const useGetPromptCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
9
73
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
10
74
|
originalArgs?: undefined | undefined;
|
|
@@ -15,7 +79,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
15
79
|
startedTimeStamp?: undefined | undefined;
|
|
16
80
|
fulfilledTimeStamp?: undefined | undefined;
|
|
17
81
|
} & {
|
|
18
|
-
currentData?:
|
|
82
|
+
currentData?: any;
|
|
19
83
|
isUninitialized: false;
|
|
20
84
|
isLoading: false;
|
|
21
85
|
isFetching: false;
|
|
@@ -23,8 +87,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
23
87
|
isError: false;
|
|
24
88
|
}, "isUninitialized"> & {
|
|
25
89
|
isUninitialized: true;
|
|
26
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
27
|
-
currentData?:
|
|
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>> & {
|
|
91
|
+
currentData?: any;
|
|
28
92
|
isUninitialized: false;
|
|
29
93
|
isLoading: false;
|
|
30
94
|
isFetching: false;
|
|
@@ -38,8 +102,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
38
102
|
isSuccess: true;
|
|
39
103
|
isFetching: true;
|
|
40
104
|
error: undefined;
|
|
41
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
42
|
-
currentData?:
|
|
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>> & {
|
|
106
|
+
currentData?: any;
|
|
43
107
|
isUninitialized: false;
|
|
44
108
|
isLoading: false;
|
|
45
109
|
isFetching: false;
|
|
@@ -49,8 +113,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
49
113
|
isSuccess: true;
|
|
50
114
|
isFetching: false;
|
|
51
115
|
error: undefined;
|
|
52
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
53
|
-
currentData?:
|
|
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>> & {
|
|
117
|
+
currentData?: any;
|
|
54
118
|
isUninitialized: false;
|
|
55
119
|
isLoading: false;
|
|
56
120
|
isFetching: false;
|
|
@@ -58,8 +122,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
58
122
|
isError: false;
|
|
59
123
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
60
124
|
isError: true;
|
|
61
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
62
|
-
currentData?:
|
|
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>> & {
|
|
126
|
+
currentData?: any;
|
|
63
127
|
isUninitialized: false;
|
|
64
128
|
isLoading: false;
|
|
65
129
|
isFetching: false;
|
|
@@ -67,7 +131,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
67
131
|
isError: false;
|
|
68
132
|
}, "error">>)>> & {
|
|
69
133
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
70
|
-
}>(arg:
|
|
134
|
+
}>(arg: GetPromptCategoriesParams | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
71
135
|
skip?: boolean;
|
|
72
136
|
refetchOnMountOrArgChange?: boolean | number;
|
|
73
137
|
} & {
|
|
@@ -82,7 +146,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
82
146
|
startedTimeStamp?: undefined | undefined;
|
|
83
147
|
fulfilledTimeStamp?: undefined | undefined;
|
|
84
148
|
} & {
|
|
85
|
-
currentData?:
|
|
149
|
+
currentData?: any;
|
|
86
150
|
isUninitialized: false;
|
|
87
151
|
isLoading: false;
|
|
88
152
|
isFetching: false;
|
|
@@ -90,8 +154,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
90
154
|
isError: false;
|
|
91
155
|
}, "isUninitialized"> & {
|
|
92
156
|
isUninitialized: true;
|
|
93
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
94
|
-
currentData?:
|
|
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>> & {
|
|
158
|
+
currentData?: any;
|
|
95
159
|
isUninitialized: false;
|
|
96
160
|
isLoading: false;
|
|
97
161
|
isFetching: false;
|
|
@@ -105,8 +169,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
105
169
|
isSuccess: true;
|
|
106
170
|
isFetching: true;
|
|
107
171
|
error: undefined;
|
|
108
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
109
|
-
currentData?:
|
|
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>> & {
|
|
173
|
+
currentData?: any;
|
|
110
174
|
isUninitialized: false;
|
|
111
175
|
isLoading: false;
|
|
112
176
|
isFetching: false;
|
|
@@ -116,8 +180,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
116
180
|
isSuccess: true;
|
|
117
181
|
isFetching: false;
|
|
118
182
|
error: undefined;
|
|
119
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
120
|
-
currentData?:
|
|
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>> & {
|
|
184
|
+
currentData?: any;
|
|
121
185
|
isUninitialized: false;
|
|
122
186
|
isLoading: false;
|
|
123
187
|
isFetching: false;
|
|
@@ -125,8 +189,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
125
189
|
isError: false;
|
|
126
190
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
127
191
|
isError: true;
|
|
128
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
129
|
-
currentData?:
|
|
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>> & {
|
|
193
|
+
currentData?: any;
|
|
130
194
|
isUninitialized: false;
|
|
131
195
|
isLoading: false;
|
|
132
196
|
isFetching: false;
|
|
@@ -136,7 +200,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
136
200
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
137
201
|
}) => R) | undefined;
|
|
138
202
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
139
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
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>>;
|
|
140
204
|
}, useLazyGetPromptCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
141
205
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
142
206
|
originalArgs?: undefined | undefined;
|
|
@@ -147,7 +211,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
147
211
|
startedTimeStamp?: undefined | undefined;
|
|
148
212
|
fulfilledTimeStamp?: undefined | undefined;
|
|
149
213
|
} & {
|
|
150
|
-
currentData?:
|
|
214
|
+
currentData?: any;
|
|
151
215
|
isUninitialized: false;
|
|
152
216
|
isLoading: false;
|
|
153
217
|
isFetching: false;
|
|
@@ -155,8 +219,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
155
219
|
isError: false;
|
|
156
220
|
}, "isUninitialized"> & {
|
|
157
221
|
isUninitialized: true;
|
|
158
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
159
|
-
currentData?:
|
|
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>> & {
|
|
223
|
+
currentData?: any;
|
|
160
224
|
isUninitialized: false;
|
|
161
225
|
isLoading: false;
|
|
162
226
|
isFetching: false;
|
|
@@ -170,8 +234,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
170
234
|
isSuccess: true;
|
|
171
235
|
isFetching: true;
|
|
172
236
|
error: undefined;
|
|
173
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
174
|
-
currentData?:
|
|
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>> & {
|
|
238
|
+
currentData?: any;
|
|
175
239
|
isUninitialized: false;
|
|
176
240
|
isLoading: false;
|
|
177
241
|
isFetching: false;
|
|
@@ -181,8 +245,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
181
245
|
isSuccess: true;
|
|
182
246
|
isFetching: false;
|
|
183
247
|
error: undefined;
|
|
184
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
185
|
-
currentData?:
|
|
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>> & {
|
|
249
|
+
currentData?: any;
|
|
186
250
|
isUninitialized: false;
|
|
187
251
|
isLoading: false;
|
|
188
252
|
isFetching: false;
|
|
@@ -190,8 +254,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
190
254
|
isError: false;
|
|
191
255
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
192
256
|
isError: true;
|
|
193
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
194
|
-
currentData?:
|
|
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>> & {
|
|
258
|
+
currentData?: any;
|
|
195
259
|
isUninitialized: false;
|
|
196
260
|
isLoading: false;
|
|
197
261
|
isFetching: false;
|
|
@@ -211,7 +275,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
211
275
|
startedTimeStamp?: undefined | undefined;
|
|
212
276
|
fulfilledTimeStamp?: undefined | undefined;
|
|
213
277
|
} & {
|
|
214
|
-
currentData?:
|
|
278
|
+
currentData?: any;
|
|
215
279
|
isUninitialized: false;
|
|
216
280
|
isLoading: false;
|
|
217
281
|
isFetching: false;
|
|
@@ -219,8 +283,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
219
283
|
isError: false;
|
|
220
284
|
}, "isUninitialized"> & {
|
|
221
285
|
isUninitialized: true;
|
|
222
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
223
|
-
currentData?:
|
|
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>> & {
|
|
287
|
+
currentData?: any;
|
|
224
288
|
isUninitialized: false;
|
|
225
289
|
isLoading: false;
|
|
226
290
|
isFetching: false;
|
|
@@ -234,8 +298,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
234
298
|
isSuccess: true;
|
|
235
299
|
isFetching: true;
|
|
236
300
|
error: undefined;
|
|
237
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
238
|
-
currentData?:
|
|
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>> & {
|
|
302
|
+
currentData?: any;
|
|
239
303
|
isUninitialized: false;
|
|
240
304
|
isLoading: false;
|
|
241
305
|
isFetching: false;
|
|
@@ -245,8 +309,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
245
309
|
isSuccess: true;
|
|
246
310
|
isFetching: false;
|
|
247
311
|
error: undefined;
|
|
248
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
249
|
-
currentData?:
|
|
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>> & {
|
|
313
|
+
currentData?: any;
|
|
250
314
|
isUninitialized: false;
|
|
251
315
|
isLoading: false;
|
|
252
316
|
isFetching: false;
|
|
@@ -254,8 +318,8 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
254
318
|
isError: false;
|
|
255
319
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
256
320
|
isError: true;
|
|
257
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
258
|
-
currentData?:
|
|
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>> & {
|
|
322
|
+
currentData?: any;
|
|
259
323
|
isUninitialized: false;
|
|
260
324
|
isLoading: false;
|
|
261
325
|
isFetching: false;
|
|
@@ -264,10 +328,10 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
264
328
|
}, "error">>)>> & {
|
|
265
329
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
266
330
|
}) => R) | undefined;
|
|
267
|
-
}, "skip">) | undefined) => [(arg:
|
|
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] & {
|
|
268
332
|
reset: () => void;
|
|
269
333
|
}, {
|
|
270
|
-
lastArg:
|
|
334
|
+
lastArg: GetPromptCategoriesParams;
|
|
271
335
|
}], useGetPromptsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
272
336
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
273
337
|
originalArgs?: undefined | undefined;
|
|
@@ -286,7 +350,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
286
350
|
isError: false;
|
|
287
351
|
}, "isUninitialized"> & {
|
|
288
352
|
isUninitialized: true;
|
|
289
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
353
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
354
|
+
org: string;
|
|
355
|
+
category?: number;
|
|
356
|
+
createdBy?: string;
|
|
357
|
+
filterBy?: string;
|
|
358
|
+
mentorUniqueId?: string;
|
|
359
|
+
tag?: number;
|
|
360
|
+
visibility?: string;
|
|
361
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
290
362
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
291
363
|
isUninitialized: false;
|
|
292
364
|
isLoading: false;
|
|
@@ -301,7 +373,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
301
373
|
isSuccess: true;
|
|
302
374
|
isFetching: true;
|
|
303
375
|
error: undefined;
|
|
304
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
376
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
377
|
+
org: string;
|
|
378
|
+
category?: number;
|
|
379
|
+
createdBy?: string;
|
|
380
|
+
filterBy?: string;
|
|
381
|
+
mentorUniqueId?: string;
|
|
382
|
+
tag?: number;
|
|
383
|
+
visibility?: string;
|
|
384
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
305
385
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
306
386
|
isUninitialized: false;
|
|
307
387
|
isLoading: false;
|
|
@@ -312,7 +392,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
312
392
|
isSuccess: true;
|
|
313
393
|
isFetching: false;
|
|
314
394
|
error: undefined;
|
|
315
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
395
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
396
|
+
org: string;
|
|
397
|
+
category?: number;
|
|
398
|
+
createdBy?: string;
|
|
399
|
+
filterBy?: string;
|
|
400
|
+
mentorUniqueId?: string;
|
|
401
|
+
tag?: number;
|
|
402
|
+
visibility?: string;
|
|
403
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
316
404
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
317
405
|
isUninitialized: false;
|
|
318
406
|
isLoading: false;
|
|
@@ -321,7 +409,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
321
409
|
isError: false;
|
|
322
410
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
323
411
|
isError: true;
|
|
324
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
412
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
413
|
+
org: string;
|
|
414
|
+
category?: number;
|
|
415
|
+
createdBy?: string;
|
|
416
|
+
filterBy?: string;
|
|
417
|
+
mentorUniqueId?: string;
|
|
418
|
+
tag?: number;
|
|
419
|
+
visibility?: string;
|
|
420
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
325
421
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
326
422
|
isUninitialized: false;
|
|
327
423
|
isLoading: false;
|
|
@@ -330,7 +426,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
330
426
|
isError: false;
|
|
331
427
|
}, "error">>)>> & {
|
|
332
428
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
333
|
-
}>(arg:
|
|
429
|
+
}>(arg: {
|
|
430
|
+
org: string;
|
|
431
|
+
category?: number;
|
|
432
|
+
createdBy?: string;
|
|
433
|
+
filterBy?: string;
|
|
434
|
+
mentorUniqueId?: string;
|
|
435
|
+
tag?: number;
|
|
436
|
+
visibility?: string;
|
|
437
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
334
438
|
skip?: boolean;
|
|
335
439
|
refetchOnMountOrArgChange?: boolean | number;
|
|
336
440
|
} & {
|
|
@@ -353,7 +457,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
353
457
|
isError: false;
|
|
354
458
|
}, "isUninitialized"> & {
|
|
355
459
|
isUninitialized: true;
|
|
356
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
460
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
461
|
+
org: string;
|
|
462
|
+
category?: number;
|
|
463
|
+
createdBy?: string;
|
|
464
|
+
filterBy?: string;
|
|
465
|
+
mentorUniqueId?: string;
|
|
466
|
+
tag?: number;
|
|
467
|
+
visibility?: string;
|
|
468
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
357
469
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
358
470
|
isUninitialized: false;
|
|
359
471
|
isLoading: false;
|
|
@@ -368,7 +480,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
368
480
|
isSuccess: true;
|
|
369
481
|
isFetching: true;
|
|
370
482
|
error: undefined;
|
|
371
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
483
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
484
|
+
org: string;
|
|
485
|
+
category?: number;
|
|
486
|
+
createdBy?: string;
|
|
487
|
+
filterBy?: string;
|
|
488
|
+
mentorUniqueId?: string;
|
|
489
|
+
tag?: number;
|
|
490
|
+
visibility?: string;
|
|
491
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
372
492
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
373
493
|
isUninitialized: false;
|
|
374
494
|
isLoading: false;
|
|
@@ -379,7 +499,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
379
499
|
isSuccess: true;
|
|
380
500
|
isFetching: false;
|
|
381
501
|
error: undefined;
|
|
382
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
502
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
503
|
+
org: string;
|
|
504
|
+
category?: number;
|
|
505
|
+
createdBy?: string;
|
|
506
|
+
filterBy?: string;
|
|
507
|
+
mentorUniqueId?: string;
|
|
508
|
+
tag?: number;
|
|
509
|
+
visibility?: string;
|
|
510
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
383
511
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
384
512
|
isUninitialized: false;
|
|
385
513
|
isLoading: false;
|
|
@@ -388,7 +516,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
388
516
|
isError: false;
|
|
389
517
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
390
518
|
isError: true;
|
|
391
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
519
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
520
|
+
org: string;
|
|
521
|
+
category?: number;
|
|
522
|
+
createdBy?: string;
|
|
523
|
+
filterBy?: string;
|
|
524
|
+
mentorUniqueId?: string;
|
|
525
|
+
tag?: number;
|
|
526
|
+
visibility?: string;
|
|
527
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
392
528
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
393
529
|
isUninitialized: false;
|
|
394
530
|
isLoading: false;
|
|
@@ -399,7 +535,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
399
535
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
400
536
|
}) => R) | undefined;
|
|
401
537
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
402
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
538
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
539
|
+
org: string;
|
|
540
|
+
category?: number;
|
|
541
|
+
createdBy?: string;
|
|
542
|
+
filterBy?: string;
|
|
543
|
+
mentorUniqueId?: string;
|
|
544
|
+
tag?: number;
|
|
545
|
+
visibility?: string;
|
|
546
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>>;
|
|
403
547
|
}, useLazyGetPromptsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
404
548
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
405
549
|
originalArgs?: undefined | undefined;
|
|
@@ -418,7 +562,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
418
562
|
isError: false;
|
|
419
563
|
}, "isUninitialized"> & {
|
|
420
564
|
isUninitialized: true;
|
|
421
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
565
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
566
|
+
org: string;
|
|
567
|
+
category?: number;
|
|
568
|
+
createdBy?: string;
|
|
569
|
+
filterBy?: string;
|
|
570
|
+
mentorUniqueId?: string;
|
|
571
|
+
tag?: number;
|
|
572
|
+
visibility?: string;
|
|
573
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
422
574
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
423
575
|
isUninitialized: false;
|
|
424
576
|
isLoading: false;
|
|
@@ -433,7 +585,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
433
585
|
isSuccess: true;
|
|
434
586
|
isFetching: true;
|
|
435
587
|
error: undefined;
|
|
436
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
588
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
589
|
+
org: string;
|
|
590
|
+
category?: number;
|
|
591
|
+
createdBy?: string;
|
|
592
|
+
filterBy?: string;
|
|
593
|
+
mentorUniqueId?: string;
|
|
594
|
+
tag?: number;
|
|
595
|
+
visibility?: string;
|
|
596
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
437
597
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
438
598
|
isUninitialized: false;
|
|
439
599
|
isLoading: false;
|
|
@@ -444,7 +604,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
444
604
|
isSuccess: true;
|
|
445
605
|
isFetching: false;
|
|
446
606
|
error: undefined;
|
|
447
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
607
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
608
|
+
org: string;
|
|
609
|
+
category?: number;
|
|
610
|
+
createdBy?: string;
|
|
611
|
+
filterBy?: string;
|
|
612
|
+
mentorUniqueId?: string;
|
|
613
|
+
tag?: number;
|
|
614
|
+
visibility?: string;
|
|
615
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
448
616
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
449
617
|
isUninitialized: false;
|
|
450
618
|
isLoading: false;
|
|
@@ -453,7 +621,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
453
621
|
isError: false;
|
|
454
622
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
455
623
|
isError: true;
|
|
456
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
624
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
625
|
+
org: string;
|
|
626
|
+
category?: number;
|
|
627
|
+
createdBy?: string;
|
|
628
|
+
filterBy?: string;
|
|
629
|
+
mentorUniqueId?: string;
|
|
630
|
+
tag?: number;
|
|
631
|
+
visibility?: string;
|
|
632
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
457
633
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
458
634
|
isUninitialized: false;
|
|
459
635
|
isLoading: false;
|
|
@@ -482,7 +658,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
482
658
|
isError: false;
|
|
483
659
|
}, "isUninitialized"> & {
|
|
484
660
|
isUninitialized: true;
|
|
485
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
661
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
662
|
+
org: string;
|
|
663
|
+
category?: number;
|
|
664
|
+
createdBy?: string;
|
|
665
|
+
filterBy?: string;
|
|
666
|
+
mentorUniqueId?: string;
|
|
667
|
+
tag?: number;
|
|
668
|
+
visibility?: string;
|
|
669
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
486
670
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
487
671
|
isUninitialized: false;
|
|
488
672
|
isLoading: false;
|
|
@@ -497,7 +681,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
497
681
|
isSuccess: true;
|
|
498
682
|
isFetching: true;
|
|
499
683
|
error: undefined;
|
|
500
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
684
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
685
|
+
org: string;
|
|
686
|
+
category?: number;
|
|
687
|
+
createdBy?: string;
|
|
688
|
+
filterBy?: string;
|
|
689
|
+
mentorUniqueId?: string;
|
|
690
|
+
tag?: number;
|
|
691
|
+
visibility?: string;
|
|
692
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
501
693
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
502
694
|
isUninitialized: false;
|
|
503
695
|
isLoading: false;
|
|
@@ -508,7 +700,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
508
700
|
isSuccess: true;
|
|
509
701
|
isFetching: false;
|
|
510
702
|
error: undefined;
|
|
511
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
703
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
704
|
+
org: string;
|
|
705
|
+
category?: number;
|
|
706
|
+
createdBy?: string;
|
|
707
|
+
filterBy?: string;
|
|
708
|
+
mentorUniqueId?: string;
|
|
709
|
+
tag?: number;
|
|
710
|
+
visibility?: string;
|
|
711
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
512
712
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
513
713
|
isUninitialized: false;
|
|
514
714
|
isLoading: false;
|
|
@@ -517,7 +717,15 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
517
717
|
isError: false;
|
|
518
718
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
519
719
|
isError: true;
|
|
520
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
720
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
721
|
+
org: string;
|
|
722
|
+
category?: number;
|
|
723
|
+
createdBy?: string;
|
|
724
|
+
filterBy?: string;
|
|
725
|
+
mentorUniqueId?: string;
|
|
726
|
+
tag?: number;
|
|
727
|
+
visibility?: string;
|
|
728
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
521
729
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
522
730
|
isUninitialized: false;
|
|
523
731
|
isLoading: false;
|
|
@@ -527,10 +735,654 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
527
735
|
}, "error">>)>> & {
|
|
528
736
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
529
737
|
}) => R) | undefined;
|
|
530
|
-
}, "skip">) | undefined) => [(arg:
|
|
738
|
+
}, "skip">) | undefined) => [(arg: {
|
|
739
|
+
org: string;
|
|
740
|
+
category?: number;
|
|
741
|
+
createdBy?: string;
|
|
742
|
+
filterBy?: string;
|
|
743
|
+
mentorUniqueId?: string;
|
|
744
|
+
tag?: number;
|
|
745
|
+
visibility?: string;
|
|
746
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
747
|
+
org: string;
|
|
748
|
+
category?: number;
|
|
749
|
+
createdBy?: string;
|
|
750
|
+
filterBy?: string;
|
|
751
|
+
mentorUniqueId?: string;
|
|
752
|
+
tag?: number;
|
|
753
|
+
visibility?: string;
|
|
754
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
531
755
|
reset: () => void;
|
|
532
756
|
}, {
|
|
533
|
-
lastArg:
|
|
757
|
+
lastArg: {
|
|
758
|
+
org: string;
|
|
759
|
+
category?: number;
|
|
760
|
+
createdBy?: string;
|
|
761
|
+
filterBy?: string;
|
|
762
|
+
mentorUniqueId?: string;
|
|
763
|
+
tag?: number;
|
|
764
|
+
visibility?: string;
|
|
765
|
+
};
|
|
766
|
+
}], useGetPromptsSearchQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
767
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
768
|
+
originalArgs?: undefined | undefined;
|
|
769
|
+
data?: undefined | undefined;
|
|
770
|
+
error?: undefined | undefined;
|
|
771
|
+
requestId?: undefined | undefined;
|
|
772
|
+
endpointName?: string | undefined;
|
|
773
|
+
startedTimeStamp?: undefined | undefined;
|
|
774
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
775
|
+
} & {
|
|
776
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
777
|
+
isUninitialized: false;
|
|
778
|
+
isLoading: false;
|
|
779
|
+
isFetching: false;
|
|
780
|
+
isSuccess: false;
|
|
781
|
+
isError: false;
|
|
782
|
+
}, "isUninitialized"> & {
|
|
783
|
+
isUninitialized: true;
|
|
784
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
785
|
+
org: string;
|
|
786
|
+
username: string;
|
|
787
|
+
alphabetical?: boolean;
|
|
788
|
+
category?: string;
|
|
789
|
+
createdBy?: string;
|
|
790
|
+
filterFacet?: boolean;
|
|
791
|
+
language?: string;
|
|
792
|
+
limit?: number;
|
|
793
|
+
mentor?: string;
|
|
794
|
+
offset?: number;
|
|
795
|
+
orderDirection?: string;
|
|
796
|
+
query?: string;
|
|
797
|
+
sortBy?: string;
|
|
798
|
+
style?: string;
|
|
799
|
+
tenant?: string;
|
|
800
|
+
tone?: string;
|
|
801
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
802
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
803
|
+
isUninitialized: false;
|
|
804
|
+
isLoading: false;
|
|
805
|
+
isFetching: false;
|
|
806
|
+
isSuccess: false;
|
|
807
|
+
isError: false;
|
|
808
|
+
}, {
|
|
809
|
+
isLoading: true;
|
|
810
|
+
isFetching: boolean;
|
|
811
|
+
data: undefined;
|
|
812
|
+
} | ({
|
|
813
|
+
isSuccess: true;
|
|
814
|
+
isFetching: true;
|
|
815
|
+
error: undefined;
|
|
816
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
817
|
+
org: string;
|
|
818
|
+
username: string;
|
|
819
|
+
alphabetical?: boolean;
|
|
820
|
+
category?: string;
|
|
821
|
+
createdBy?: string;
|
|
822
|
+
filterFacet?: boolean;
|
|
823
|
+
language?: string;
|
|
824
|
+
limit?: number;
|
|
825
|
+
mentor?: string;
|
|
826
|
+
offset?: number;
|
|
827
|
+
orderDirection?: string;
|
|
828
|
+
query?: string;
|
|
829
|
+
sortBy?: string;
|
|
830
|
+
style?: string;
|
|
831
|
+
tenant?: string;
|
|
832
|
+
tone?: string;
|
|
833
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
834
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
835
|
+
isUninitialized: false;
|
|
836
|
+
isLoading: false;
|
|
837
|
+
isFetching: false;
|
|
838
|
+
isSuccess: false;
|
|
839
|
+
isError: false;
|
|
840
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
841
|
+
isSuccess: true;
|
|
842
|
+
isFetching: false;
|
|
843
|
+
error: undefined;
|
|
844
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
845
|
+
org: string;
|
|
846
|
+
username: string;
|
|
847
|
+
alphabetical?: boolean;
|
|
848
|
+
category?: string;
|
|
849
|
+
createdBy?: string;
|
|
850
|
+
filterFacet?: boolean;
|
|
851
|
+
language?: string;
|
|
852
|
+
limit?: number;
|
|
853
|
+
mentor?: string;
|
|
854
|
+
offset?: number;
|
|
855
|
+
orderDirection?: string;
|
|
856
|
+
query?: string;
|
|
857
|
+
sortBy?: string;
|
|
858
|
+
style?: string;
|
|
859
|
+
tenant?: string;
|
|
860
|
+
tone?: string;
|
|
861
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
862
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
863
|
+
isUninitialized: false;
|
|
864
|
+
isLoading: false;
|
|
865
|
+
isFetching: false;
|
|
866
|
+
isSuccess: false;
|
|
867
|
+
isError: false;
|
|
868
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
869
|
+
isError: true;
|
|
870
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
871
|
+
org: string;
|
|
872
|
+
username: string;
|
|
873
|
+
alphabetical?: boolean;
|
|
874
|
+
category?: string;
|
|
875
|
+
createdBy?: string;
|
|
876
|
+
filterFacet?: boolean;
|
|
877
|
+
language?: string;
|
|
878
|
+
limit?: number;
|
|
879
|
+
mentor?: string;
|
|
880
|
+
offset?: number;
|
|
881
|
+
orderDirection?: string;
|
|
882
|
+
query?: string;
|
|
883
|
+
sortBy?: string;
|
|
884
|
+
style?: string;
|
|
885
|
+
tenant?: string;
|
|
886
|
+
tone?: string;
|
|
887
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
888
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
889
|
+
isUninitialized: false;
|
|
890
|
+
isLoading: false;
|
|
891
|
+
isFetching: false;
|
|
892
|
+
isSuccess: false;
|
|
893
|
+
isError: false;
|
|
894
|
+
}, "error">>)>> & {
|
|
895
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
896
|
+
}>(arg: {
|
|
897
|
+
org: string;
|
|
898
|
+
username: string;
|
|
899
|
+
alphabetical?: boolean;
|
|
900
|
+
category?: string;
|
|
901
|
+
createdBy?: string;
|
|
902
|
+
filterFacet?: boolean;
|
|
903
|
+
language?: string;
|
|
904
|
+
limit?: number;
|
|
905
|
+
mentor?: string;
|
|
906
|
+
offset?: number;
|
|
907
|
+
orderDirection?: string;
|
|
908
|
+
query?: string;
|
|
909
|
+
sortBy?: string;
|
|
910
|
+
style?: string;
|
|
911
|
+
tenant?: string;
|
|
912
|
+
tone?: string;
|
|
913
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
914
|
+
skip?: boolean;
|
|
915
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
916
|
+
} & {
|
|
917
|
+
skip?: boolean;
|
|
918
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
919
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
920
|
+
originalArgs?: undefined | undefined;
|
|
921
|
+
data?: undefined | undefined;
|
|
922
|
+
error?: undefined | undefined;
|
|
923
|
+
requestId?: undefined | undefined;
|
|
924
|
+
endpointName?: string | undefined;
|
|
925
|
+
startedTimeStamp?: undefined | undefined;
|
|
926
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
927
|
+
} & {
|
|
928
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
929
|
+
isUninitialized: false;
|
|
930
|
+
isLoading: false;
|
|
931
|
+
isFetching: false;
|
|
932
|
+
isSuccess: false;
|
|
933
|
+
isError: false;
|
|
934
|
+
}, "isUninitialized"> & {
|
|
935
|
+
isUninitialized: true;
|
|
936
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
937
|
+
org: string;
|
|
938
|
+
username: string;
|
|
939
|
+
alphabetical?: boolean;
|
|
940
|
+
category?: string;
|
|
941
|
+
createdBy?: string;
|
|
942
|
+
filterFacet?: boolean;
|
|
943
|
+
language?: string;
|
|
944
|
+
limit?: number;
|
|
945
|
+
mentor?: string;
|
|
946
|
+
offset?: number;
|
|
947
|
+
orderDirection?: string;
|
|
948
|
+
query?: string;
|
|
949
|
+
sortBy?: string;
|
|
950
|
+
style?: string;
|
|
951
|
+
tenant?: string;
|
|
952
|
+
tone?: string;
|
|
953
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
954
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
955
|
+
isUninitialized: false;
|
|
956
|
+
isLoading: false;
|
|
957
|
+
isFetching: false;
|
|
958
|
+
isSuccess: false;
|
|
959
|
+
isError: false;
|
|
960
|
+
}, {
|
|
961
|
+
isLoading: true;
|
|
962
|
+
isFetching: boolean;
|
|
963
|
+
data: undefined;
|
|
964
|
+
} | ({
|
|
965
|
+
isSuccess: true;
|
|
966
|
+
isFetching: true;
|
|
967
|
+
error: undefined;
|
|
968
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
969
|
+
org: string;
|
|
970
|
+
username: string;
|
|
971
|
+
alphabetical?: boolean;
|
|
972
|
+
category?: string;
|
|
973
|
+
createdBy?: string;
|
|
974
|
+
filterFacet?: boolean;
|
|
975
|
+
language?: string;
|
|
976
|
+
limit?: number;
|
|
977
|
+
mentor?: string;
|
|
978
|
+
offset?: number;
|
|
979
|
+
orderDirection?: string;
|
|
980
|
+
query?: string;
|
|
981
|
+
sortBy?: string;
|
|
982
|
+
style?: string;
|
|
983
|
+
tenant?: string;
|
|
984
|
+
tone?: string;
|
|
985
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
986
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
987
|
+
isUninitialized: false;
|
|
988
|
+
isLoading: false;
|
|
989
|
+
isFetching: false;
|
|
990
|
+
isSuccess: false;
|
|
991
|
+
isError: false;
|
|
992
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
993
|
+
isSuccess: true;
|
|
994
|
+
isFetching: false;
|
|
995
|
+
error: undefined;
|
|
996
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
997
|
+
org: string;
|
|
998
|
+
username: string;
|
|
999
|
+
alphabetical?: boolean;
|
|
1000
|
+
category?: string;
|
|
1001
|
+
createdBy?: string;
|
|
1002
|
+
filterFacet?: boolean;
|
|
1003
|
+
language?: string;
|
|
1004
|
+
limit?: number;
|
|
1005
|
+
mentor?: string;
|
|
1006
|
+
offset?: number;
|
|
1007
|
+
orderDirection?: string;
|
|
1008
|
+
query?: string;
|
|
1009
|
+
sortBy?: string;
|
|
1010
|
+
style?: string;
|
|
1011
|
+
tenant?: string;
|
|
1012
|
+
tone?: string;
|
|
1013
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1014
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1015
|
+
isUninitialized: false;
|
|
1016
|
+
isLoading: false;
|
|
1017
|
+
isFetching: false;
|
|
1018
|
+
isSuccess: false;
|
|
1019
|
+
isError: false;
|
|
1020
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1021
|
+
isError: true;
|
|
1022
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1023
|
+
org: string;
|
|
1024
|
+
username: string;
|
|
1025
|
+
alphabetical?: boolean;
|
|
1026
|
+
category?: string;
|
|
1027
|
+
createdBy?: string;
|
|
1028
|
+
filterFacet?: boolean;
|
|
1029
|
+
language?: string;
|
|
1030
|
+
limit?: number;
|
|
1031
|
+
mentor?: string;
|
|
1032
|
+
offset?: number;
|
|
1033
|
+
orderDirection?: string;
|
|
1034
|
+
query?: string;
|
|
1035
|
+
sortBy?: string;
|
|
1036
|
+
style?: string;
|
|
1037
|
+
tenant?: string;
|
|
1038
|
+
tone?: string;
|
|
1039
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1040
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1041
|
+
isUninitialized: false;
|
|
1042
|
+
isLoading: false;
|
|
1043
|
+
isFetching: false;
|
|
1044
|
+
isSuccess: false;
|
|
1045
|
+
isError: false;
|
|
1046
|
+
}, "error">>)>> & {
|
|
1047
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1048
|
+
}) => R) | undefined;
|
|
1049
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1050
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1051
|
+
org: string;
|
|
1052
|
+
username: string;
|
|
1053
|
+
alphabetical?: boolean;
|
|
1054
|
+
category?: string;
|
|
1055
|
+
createdBy?: string;
|
|
1056
|
+
filterFacet?: boolean;
|
|
1057
|
+
language?: string;
|
|
1058
|
+
limit?: number;
|
|
1059
|
+
mentor?: string;
|
|
1060
|
+
offset?: number;
|
|
1061
|
+
orderDirection?: string;
|
|
1062
|
+
query?: string;
|
|
1063
|
+
sortBy?: string;
|
|
1064
|
+
style?: string;
|
|
1065
|
+
tenant?: string;
|
|
1066
|
+
tone?: string;
|
|
1067
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>>;
|
|
1068
|
+
}, useLazyGetPromptsSearchQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1069
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1070
|
+
originalArgs?: undefined | undefined;
|
|
1071
|
+
data?: undefined | undefined;
|
|
1072
|
+
error?: undefined | undefined;
|
|
1073
|
+
requestId?: undefined | undefined;
|
|
1074
|
+
endpointName?: string | undefined;
|
|
1075
|
+
startedTimeStamp?: undefined | undefined;
|
|
1076
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1077
|
+
} & {
|
|
1078
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1079
|
+
isUninitialized: false;
|
|
1080
|
+
isLoading: false;
|
|
1081
|
+
isFetching: false;
|
|
1082
|
+
isSuccess: false;
|
|
1083
|
+
isError: false;
|
|
1084
|
+
}, "isUninitialized"> & {
|
|
1085
|
+
isUninitialized: true;
|
|
1086
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1087
|
+
org: string;
|
|
1088
|
+
username: string;
|
|
1089
|
+
alphabetical?: boolean;
|
|
1090
|
+
category?: string;
|
|
1091
|
+
createdBy?: string;
|
|
1092
|
+
filterFacet?: boolean;
|
|
1093
|
+
language?: string;
|
|
1094
|
+
limit?: number;
|
|
1095
|
+
mentor?: string;
|
|
1096
|
+
offset?: number;
|
|
1097
|
+
orderDirection?: string;
|
|
1098
|
+
query?: string;
|
|
1099
|
+
sortBy?: string;
|
|
1100
|
+
style?: string;
|
|
1101
|
+
tenant?: string;
|
|
1102
|
+
tone?: string;
|
|
1103
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1104
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1105
|
+
isUninitialized: false;
|
|
1106
|
+
isLoading: false;
|
|
1107
|
+
isFetching: false;
|
|
1108
|
+
isSuccess: false;
|
|
1109
|
+
isError: false;
|
|
1110
|
+
}, {
|
|
1111
|
+
isLoading: true;
|
|
1112
|
+
isFetching: boolean;
|
|
1113
|
+
data: undefined;
|
|
1114
|
+
} | ({
|
|
1115
|
+
isSuccess: true;
|
|
1116
|
+
isFetching: true;
|
|
1117
|
+
error: undefined;
|
|
1118
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1119
|
+
org: string;
|
|
1120
|
+
username: string;
|
|
1121
|
+
alphabetical?: boolean;
|
|
1122
|
+
category?: string;
|
|
1123
|
+
createdBy?: string;
|
|
1124
|
+
filterFacet?: boolean;
|
|
1125
|
+
language?: string;
|
|
1126
|
+
limit?: number;
|
|
1127
|
+
mentor?: string;
|
|
1128
|
+
offset?: number;
|
|
1129
|
+
orderDirection?: string;
|
|
1130
|
+
query?: string;
|
|
1131
|
+
sortBy?: string;
|
|
1132
|
+
style?: string;
|
|
1133
|
+
tenant?: string;
|
|
1134
|
+
tone?: string;
|
|
1135
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1136
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1137
|
+
isUninitialized: false;
|
|
1138
|
+
isLoading: false;
|
|
1139
|
+
isFetching: false;
|
|
1140
|
+
isSuccess: false;
|
|
1141
|
+
isError: false;
|
|
1142
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1143
|
+
isSuccess: true;
|
|
1144
|
+
isFetching: false;
|
|
1145
|
+
error: undefined;
|
|
1146
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1147
|
+
org: string;
|
|
1148
|
+
username: string;
|
|
1149
|
+
alphabetical?: boolean;
|
|
1150
|
+
category?: string;
|
|
1151
|
+
createdBy?: string;
|
|
1152
|
+
filterFacet?: boolean;
|
|
1153
|
+
language?: string;
|
|
1154
|
+
limit?: number;
|
|
1155
|
+
mentor?: string;
|
|
1156
|
+
offset?: number;
|
|
1157
|
+
orderDirection?: string;
|
|
1158
|
+
query?: string;
|
|
1159
|
+
sortBy?: string;
|
|
1160
|
+
style?: string;
|
|
1161
|
+
tenant?: string;
|
|
1162
|
+
tone?: string;
|
|
1163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1164
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1165
|
+
isUninitialized: false;
|
|
1166
|
+
isLoading: false;
|
|
1167
|
+
isFetching: false;
|
|
1168
|
+
isSuccess: false;
|
|
1169
|
+
isError: false;
|
|
1170
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1171
|
+
isError: true;
|
|
1172
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1173
|
+
org: string;
|
|
1174
|
+
username: string;
|
|
1175
|
+
alphabetical?: boolean;
|
|
1176
|
+
category?: string;
|
|
1177
|
+
createdBy?: string;
|
|
1178
|
+
filterFacet?: boolean;
|
|
1179
|
+
language?: string;
|
|
1180
|
+
limit?: number;
|
|
1181
|
+
mentor?: string;
|
|
1182
|
+
offset?: number;
|
|
1183
|
+
orderDirection?: string;
|
|
1184
|
+
query?: string;
|
|
1185
|
+
sortBy?: string;
|
|
1186
|
+
style?: string;
|
|
1187
|
+
tenant?: string;
|
|
1188
|
+
tone?: string;
|
|
1189
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1190
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1191
|
+
isUninitialized: false;
|
|
1192
|
+
isLoading: false;
|
|
1193
|
+
isFetching: false;
|
|
1194
|
+
isSuccess: false;
|
|
1195
|
+
isError: false;
|
|
1196
|
+
}, "error">>)>> & {
|
|
1197
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1198
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
1199
|
+
skip?: boolean;
|
|
1200
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1201
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1202
|
+
originalArgs?: undefined | undefined;
|
|
1203
|
+
data?: undefined | undefined;
|
|
1204
|
+
error?: undefined | undefined;
|
|
1205
|
+
requestId?: undefined | undefined;
|
|
1206
|
+
endpointName?: string | undefined;
|
|
1207
|
+
startedTimeStamp?: undefined | undefined;
|
|
1208
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1209
|
+
} & {
|
|
1210
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1211
|
+
isUninitialized: false;
|
|
1212
|
+
isLoading: false;
|
|
1213
|
+
isFetching: false;
|
|
1214
|
+
isSuccess: false;
|
|
1215
|
+
isError: false;
|
|
1216
|
+
}, "isUninitialized"> & {
|
|
1217
|
+
isUninitialized: true;
|
|
1218
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1219
|
+
org: string;
|
|
1220
|
+
username: string;
|
|
1221
|
+
alphabetical?: boolean;
|
|
1222
|
+
category?: string;
|
|
1223
|
+
createdBy?: string;
|
|
1224
|
+
filterFacet?: boolean;
|
|
1225
|
+
language?: string;
|
|
1226
|
+
limit?: number;
|
|
1227
|
+
mentor?: string;
|
|
1228
|
+
offset?: number;
|
|
1229
|
+
orderDirection?: string;
|
|
1230
|
+
query?: string;
|
|
1231
|
+
sortBy?: string;
|
|
1232
|
+
style?: string;
|
|
1233
|
+
tenant?: string;
|
|
1234
|
+
tone?: string;
|
|
1235
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1236
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1237
|
+
isUninitialized: false;
|
|
1238
|
+
isLoading: false;
|
|
1239
|
+
isFetching: false;
|
|
1240
|
+
isSuccess: false;
|
|
1241
|
+
isError: false;
|
|
1242
|
+
}, {
|
|
1243
|
+
isLoading: true;
|
|
1244
|
+
isFetching: boolean;
|
|
1245
|
+
data: undefined;
|
|
1246
|
+
} | ({
|
|
1247
|
+
isSuccess: true;
|
|
1248
|
+
isFetching: true;
|
|
1249
|
+
error: undefined;
|
|
1250
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1251
|
+
org: string;
|
|
1252
|
+
username: string;
|
|
1253
|
+
alphabetical?: boolean;
|
|
1254
|
+
category?: string;
|
|
1255
|
+
createdBy?: string;
|
|
1256
|
+
filterFacet?: boolean;
|
|
1257
|
+
language?: string;
|
|
1258
|
+
limit?: number;
|
|
1259
|
+
mentor?: string;
|
|
1260
|
+
offset?: number;
|
|
1261
|
+
orderDirection?: string;
|
|
1262
|
+
query?: string;
|
|
1263
|
+
sortBy?: string;
|
|
1264
|
+
style?: string;
|
|
1265
|
+
tenant?: string;
|
|
1266
|
+
tone?: string;
|
|
1267
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1268
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1269
|
+
isUninitialized: false;
|
|
1270
|
+
isLoading: false;
|
|
1271
|
+
isFetching: false;
|
|
1272
|
+
isSuccess: false;
|
|
1273
|
+
isError: false;
|
|
1274
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1275
|
+
isSuccess: true;
|
|
1276
|
+
isFetching: false;
|
|
1277
|
+
error: undefined;
|
|
1278
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1279
|
+
org: string;
|
|
1280
|
+
username: string;
|
|
1281
|
+
alphabetical?: boolean;
|
|
1282
|
+
category?: string;
|
|
1283
|
+
createdBy?: string;
|
|
1284
|
+
filterFacet?: boolean;
|
|
1285
|
+
language?: string;
|
|
1286
|
+
limit?: number;
|
|
1287
|
+
mentor?: string;
|
|
1288
|
+
offset?: number;
|
|
1289
|
+
orderDirection?: string;
|
|
1290
|
+
query?: string;
|
|
1291
|
+
sortBy?: string;
|
|
1292
|
+
style?: string;
|
|
1293
|
+
tenant?: string;
|
|
1294
|
+
tone?: string;
|
|
1295
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1296
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1297
|
+
isUninitialized: false;
|
|
1298
|
+
isLoading: false;
|
|
1299
|
+
isFetching: false;
|
|
1300
|
+
isSuccess: false;
|
|
1301
|
+
isError: false;
|
|
1302
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1303
|
+
isError: true;
|
|
1304
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1305
|
+
org: string;
|
|
1306
|
+
username: string;
|
|
1307
|
+
alphabetical?: boolean;
|
|
1308
|
+
category?: string;
|
|
1309
|
+
createdBy?: string;
|
|
1310
|
+
filterFacet?: boolean;
|
|
1311
|
+
language?: string;
|
|
1312
|
+
limit?: number;
|
|
1313
|
+
mentor?: string;
|
|
1314
|
+
offset?: number;
|
|
1315
|
+
orderDirection?: string;
|
|
1316
|
+
query?: string;
|
|
1317
|
+
sortBy?: string;
|
|
1318
|
+
style?: string;
|
|
1319
|
+
tenant?: string;
|
|
1320
|
+
tone?: string;
|
|
1321
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1322
|
+
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1323
|
+
isUninitialized: false;
|
|
1324
|
+
isLoading: false;
|
|
1325
|
+
isFetching: false;
|
|
1326
|
+
isSuccess: false;
|
|
1327
|
+
isError: false;
|
|
1328
|
+
}, "error">>)>> & {
|
|
1329
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1330
|
+
}) => R) | undefined;
|
|
1331
|
+
}, "skip">) | undefined) => [(arg: {
|
|
1332
|
+
org: string;
|
|
1333
|
+
username: string;
|
|
1334
|
+
alphabetical?: boolean;
|
|
1335
|
+
category?: string;
|
|
1336
|
+
createdBy?: string;
|
|
1337
|
+
filterFacet?: boolean;
|
|
1338
|
+
language?: string;
|
|
1339
|
+
limit?: number;
|
|
1340
|
+
mentor?: string;
|
|
1341
|
+
offset?: number;
|
|
1342
|
+
orderDirection?: string;
|
|
1343
|
+
query?: string;
|
|
1344
|
+
sortBy?: string;
|
|
1345
|
+
style?: string;
|
|
1346
|
+
tenant?: string;
|
|
1347
|
+
tone?: string;
|
|
1348
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1349
|
+
org: string;
|
|
1350
|
+
username: string;
|
|
1351
|
+
alphabetical?: boolean;
|
|
1352
|
+
category?: string;
|
|
1353
|
+
createdBy?: string;
|
|
1354
|
+
filterFacet?: boolean;
|
|
1355
|
+
language?: string;
|
|
1356
|
+
limit?: number;
|
|
1357
|
+
mentor?: string;
|
|
1358
|
+
offset?: number;
|
|
1359
|
+
orderDirection?: string;
|
|
1360
|
+
query?: string;
|
|
1361
|
+
sortBy?: string;
|
|
1362
|
+
style?: string;
|
|
1363
|
+
tenant?: string;
|
|
1364
|
+
tone?: string;
|
|
1365
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1366
|
+
reset: () => void;
|
|
1367
|
+
}, {
|
|
1368
|
+
lastArg: {
|
|
1369
|
+
org: string;
|
|
1370
|
+
username: string;
|
|
1371
|
+
alphabetical?: boolean;
|
|
1372
|
+
category?: string;
|
|
1373
|
+
createdBy?: string;
|
|
1374
|
+
filterFacet?: boolean;
|
|
1375
|
+
language?: string;
|
|
1376
|
+
limit?: number;
|
|
1377
|
+
mentor?: string;
|
|
1378
|
+
offset?: number;
|
|
1379
|
+
orderDirection?: string;
|
|
1380
|
+
query?: string;
|
|
1381
|
+
sortBy?: string;
|
|
1382
|
+
style?: string;
|
|
1383
|
+
tenant?: string;
|
|
1384
|
+
tone?: string;
|
|
1385
|
+
};
|
|
534
1386
|
}], useCreatePromptMutation: <R extends Record<string, any> = ({
|
|
535
1387
|
requestId?: undefined;
|
|
536
1388
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -688,8 +1540,35 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
688
1540
|
isError: true;
|
|
689
1541
|
})) => R) | undefined;
|
|
690
1542
|
fixedCacheKey?: string;
|
|
691
|
-
} | undefined) => readonly [(arg:
|
|
692
|
-
|
|
1543
|
+
} | undefined) => readonly [(arg: {
|
|
1544
|
+
org: string;
|
|
1545
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
1546
|
+
category?: number;
|
|
1547
|
+
createdBy?: string;
|
|
1548
|
+
filterBy?: string;
|
|
1549
|
+
mentorUniqueId?: string;
|
|
1550
|
+
tag?: number;
|
|
1551
|
+
visibility?: string;
|
|
1552
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1553
|
+
org: string;
|
|
1554
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
1555
|
+
category?: number;
|
|
1556
|
+
createdBy?: string;
|
|
1557
|
+
filterBy?: string;
|
|
1558
|
+
mentorUniqueId?: string;
|
|
1559
|
+
tag?: number;
|
|
1560
|
+
visibility?: string;
|
|
1561
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1562
|
+
originalArgs?: {
|
|
1563
|
+
org: string;
|
|
1564
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
1565
|
+
category?: number;
|
|
1566
|
+
createdBy?: string;
|
|
1567
|
+
filterBy?: string;
|
|
1568
|
+
mentorUniqueId?: string;
|
|
1569
|
+
tag?: number;
|
|
1570
|
+
visibility?: string;
|
|
1571
|
+
} | undefined;
|
|
693
1572
|
reset: () => void;
|
|
694
1573
|
}], useUpdatePromptMutation: <R extends Record<string, any> = ({
|
|
695
1574
|
requestId?: undefined;
|
|
@@ -848,8 +1727,38 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
848
1727
|
isError: true;
|
|
849
1728
|
})) => R) | undefined;
|
|
850
1729
|
fixedCacheKey?: string;
|
|
851
|
-
} | undefined) => readonly [(arg:
|
|
852
|
-
|
|
1730
|
+
} | undefined) => readonly [(arg: {
|
|
1731
|
+
id: number;
|
|
1732
|
+
org: string;
|
|
1733
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
1734
|
+
category?: number;
|
|
1735
|
+
createdBy?: string;
|
|
1736
|
+
filterBy?: string;
|
|
1737
|
+
mentorUniqueId?: string;
|
|
1738
|
+
tag?: number;
|
|
1739
|
+
visibility?: string;
|
|
1740
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1741
|
+
id: number;
|
|
1742
|
+
org: string;
|
|
1743
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
1744
|
+
category?: number;
|
|
1745
|
+
createdBy?: string;
|
|
1746
|
+
filterBy?: string;
|
|
1747
|
+
mentorUniqueId?: string;
|
|
1748
|
+
tag?: number;
|
|
1749
|
+
visibility?: string;
|
|
1750
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1751
|
+
originalArgs?: {
|
|
1752
|
+
id: number;
|
|
1753
|
+
org: string;
|
|
1754
|
+
requestBody: import("@iblai/iblai-api").Prompt;
|
|
1755
|
+
category?: number;
|
|
1756
|
+
createdBy?: string;
|
|
1757
|
+
filterBy?: string;
|
|
1758
|
+
mentorUniqueId?: string;
|
|
1759
|
+
tag?: number;
|
|
1760
|
+
visibility?: string;
|
|
1761
|
+
} | undefined;
|
|
853
1762
|
reset: () => void;
|
|
854
1763
|
}], useDeletePromptMutation: <R extends Record<string, any> = ({
|
|
855
1764
|
requestId?: undefined;
|
|
@@ -1008,7 +1917,382 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1008
1917
|
isError: true;
|
|
1009
1918
|
})) => R) | undefined;
|
|
1010
1919
|
fixedCacheKey?: string;
|
|
1011
|
-
} | undefined) => readonly [(arg:
|
|
1012
|
-
|
|
1920
|
+
} | undefined) => readonly [(arg: {
|
|
1921
|
+
id: number;
|
|
1922
|
+
org: string;
|
|
1923
|
+
category?: number;
|
|
1924
|
+
createdBy?: string;
|
|
1925
|
+
filterBy?: string;
|
|
1926
|
+
mentorUniqueId?: string;
|
|
1927
|
+
tag?: number;
|
|
1928
|
+
visibility?: string;
|
|
1929
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1930
|
+
id: number;
|
|
1931
|
+
org: string;
|
|
1932
|
+
category?: number;
|
|
1933
|
+
createdBy?: string;
|
|
1934
|
+
filterBy?: string;
|
|
1935
|
+
mentorUniqueId?: string;
|
|
1936
|
+
tag?: number;
|
|
1937
|
+
visibility?: string;
|
|
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> & {
|
|
1939
|
+
originalArgs?: {
|
|
1940
|
+
id: number;
|
|
1941
|
+
org: string;
|
|
1942
|
+
category?: number;
|
|
1943
|
+
createdBy?: string;
|
|
1944
|
+
filterBy?: string;
|
|
1945
|
+
mentorUniqueId?: string;
|
|
1946
|
+
tag?: number;
|
|
1947
|
+
visibility?: string;
|
|
1948
|
+
} | undefined;
|
|
1013
1949
|
reset: () => void;
|
|
1950
|
+
}], useGetGuidedPromptsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1951
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1952
|
+
originalArgs?: undefined | undefined;
|
|
1953
|
+
data?: undefined | undefined;
|
|
1954
|
+
error?: undefined | undefined;
|
|
1955
|
+
requestId?: undefined | undefined;
|
|
1956
|
+
endpointName?: string | undefined;
|
|
1957
|
+
startedTimeStamp?: undefined | undefined;
|
|
1958
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1959
|
+
} & {
|
|
1960
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
1961
|
+
isUninitialized: false;
|
|
1962
|
+
isLoading: false;
|
|
1963
|
+
isFetching: false;
|
|
1964
|
+
isSuccess: false;
|
|
1965
|
+
isError: false;
|
|
1966
|
+
}, "isUninitialized"> & {
|
|
1967
|
+
isUninitialized: true;
|
|
1968
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1969
|
+
org: string;
|
|
1970
|
+
sessionId: string;
|
|
1971
|
+
count?: number;
|
|
1972
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1973
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
1974
|
+
isUninitialized: false;
|
|
1975
|
+
isLoading: false;
|
|
1976
|
+
isFetching: false;
|
|
1977
|
+
isSuccess: false;
|
|
1978
|
+
isError: false;
|
|
1979
|
+
}, {
|
|
1980
|
+
isLoading: true;
|
|
1981
|
+
isFetching: boolean;
|
|
1982
|
+
data: undefined;
|
|
1983
|
+
} | ({
|
|
1984
|
+
isSuccess: true;
|
|
1985
|
+
isFetching: true;
|
|
1986
|
+
error: undefined;
|
|
1987
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1988
|
+
org: string;
|
|
1989
|
+
sessionId: string;
|
|
1990
|
+
count?: number;
|
|
1991
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1992
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
1993
|
+
isUninitialized: false;
|
|
1994
|
+
isLoading: false;
|
|
1995
|
+
isFetching: false;
|
|
1996
|
+
isSuccess: false;
|
|
1997
|
+
isError: false;
|
|
1998
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1999
|
+
isSuccess: true;
|
|
2000
|
+
isFetching: false;
|
|
2001
|
+
error: undefined;
|
|
2002
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2003
|
+
org: string;
|
|
2004
|
+
sessionId: string;
|
|
2005
|
+
count?: number;
|
|
2006
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2007
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2008
|
+
isUninitialized: false;
|
|
2009
|
+
isLoading: false;
|
|
2010
|
+
isFetching: false;
|
|
2011
|
+
isSuccess: false;
|
|
2012
|
+
isError: false;
|
|
2013
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2014
|
+
isError: true;
|
|
2015
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2016
|
+
org: string;
|
|
2017
|
+
sessionId: string;
|
|
2018
|
+
count?: number;
|
|
2019
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2020
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2021
|
+
isUninitialized: false;
|
|
2022
|
+
isLoading: false;
|
|
2023
|
+
isFetching: false;
|
|
2024
|
+
isSuccess: false;
|
|
2025
|
+
isError: false;
|
|
2026
|
+
}, "error">>)>> & {
|
|
2027
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2028
|
+
}>(arg: {
|
|
2029
|
+
org: string;
|
|
2030
|
+
sessionId: string;
|
|
2031
|
+
count?: number;
|
|
2032
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
2033
|
+
skip?: boolean;
|
|
2034
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
2035
|
+
} & {
|
|
2036
|
+
skip?: boolean;
|
|
2037
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2038
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2039
|
+
originalArgs?: undefined | undefined;
|
|
2040
|
+
data?: undefined | undefined;
|
|
2041
|
+
error?: undefined | undefined;
|
|
2042
|
+
requestId?: undefined | undefined;
|
|
2043
|
+
endpointName?: string | undefined;
|
|
2044
|
+
startedTimeStamp?: undefined | undefined;
|
|
2045
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2046
|
+
} & {
|
|
2047
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2048
|
+
isUninitialized: false;
|
|
2049
|
+
isLoading: false;
|
|
2050
|
+
isFetching: false;
|
|
2051
|
+
isSuccess: false;
|
|
2052
|
+
isError: false;
|
|
2053
|
+
}, "isUninitialized"> & {
|
|
2054
|
+
isUninitialized: true;
|
|
2055
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2056
|
+
org: string;
|
|
2057
|
+
sessionId: string;
|
|
2058
|
+
count?: number;
|
|
2059
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2060
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2061
|
+
isUninitialized: false;
|
|
2062
|
+
isLoading: false;
|
|
2063
|
+
isFetching: false;
|
|
2064
|
+
isSuccess: false;
|
|
2065
|
+
isError: false;
|
|
2066
|
+
}, {
|
|
2067
|
+
isLoading: true;
|
|
2068
|
+
isFetching: boolean;
|
|
2069
|
+
data: undefined;
|
|
2070
|
+
} | ({
|
|
2071
|
+
isSuccess: true;
|
|
2072
|
+
isFetching: true;
|
|
2073
|
+
error: undefined;
|
|
2074
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2075
|
+
org: string;
|
|
2076
|
+
sessionId: string;
|
|
2077
|
+
count?: number;
|
|
2078
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2079
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2080
|
+
isUninitialized: false;
|
|
2081
|
+
isLoading: false;
|
|
2082
|
+
isFetching: false;
|
|
2083
|
+
isSuccess: false;
|
|
2084
|
+
isError: false;
|
|
2085
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2086
|
+
isSuccess: true;
|
|
2087
|
+
isFetching: false;
|
|
2088
|
+
error: undefined;
|
|
2089
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2090
|
+
org: string;
|
|
2091
|
+
sessionId: string;
|
|
2092
|
+
count?: number;
|
|
2093
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2094
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2095
|
+
isUninitialized: false;
|
|
2096
|
+
isLoading: false;
|
|
2097
|
+
isFetching: false;
|
|
2098
|
+
isSuccess: false;
|
|
2099
|
+
isError: false;
|
|
2100
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2101
|
+
isError: true;
|
|
2102
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2103
|
+
org: string;
|
|
2104
|
+
sessionId: string;
|
|
2105
|
+
count?: number;
|
|
2106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2107
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2108
|
+
isUninitialized: false;
|
|
2109
|
+
isLoading: false;
|
|
2110
|
+
isFetching: false;
|
|
2111
|
+
isSuccess: false;
|
|
2112
|
+
isError: false;
|
|
2113
|
+
}, "error">>)>> & {
|
|
2114
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2115
|
+
}) => R) | undefined;
|
|
2116
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2117
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2118
|
+
org: string;
|
|
2119
|
+
sessionId: string;
|
|
2120
|
+
count?: number;
|
|
2121
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>>;
|
|
2122
|
+
}, useLazyGetGuidedPromptsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2123
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2124
|
+
originalArgs?: undefined | undefined;
|
|
2125
|
+
data?: undefined | undefined;
|
|
2126
|
+
error?: undefined | undefined;
|
|
2127
|
+
requestId?: undefined | undefined;
|
|
2128
|
+
endpointName?: string | undefined;
|
|
2129
|
+
startedTimeStamp?: undefined | undefined;
|
|
2130
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2131
|
+
} & {
|
|
2132
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2133
|
+
isUninitialized: false;
|
|
2134
|
+
isLoading: false;
|
|
2135
|
+
isFetching: false;
|
|
2136
|
+
isSuccess: false;
|
|
2137
|
+
isError: false;
|
|
2138
|
+
}, "isUninitialized"> & {
|
|
2139
|
+
isUninitialized: true;
|
|
2140
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2141
|
+
org: string;
|
|
2142
|
+
sessionId: string;
|
|
2143
|
+
count?: number;
|
|
2144
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2145
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2146
|
+
isUninitialized: false;
|
|
2147
|
+
isLoading: false;
|
|
2148
|
+
isFetching: false;
|
|
2149
|
+
isSuccess: false;
|
|
2150
|
+
isError: false;
|
|
2151
|
+
}, {
|
|
2152
|
+
isLoading: true;
|
|
2153
|
+
isFetching: boolean;
|
|
2154
|
+
data: undefined;
|
|
2155
|
+
} | ({
|
|
2156
|
+
isSuccess: true;
|
|
2157
|
+
isFetching: true;
|
|
2158
|
+
error: undefined;
|
|
2159
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2160
|
+
org: string;
|
|
2161
|
+
sessionId: string;
|
|
2162
|
+
count?: number;
|
|
2163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2164
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2165
|
+
isUninitialized: false;
|
|
2166
|
+
isLoading: false;
|
|
2167
|
+
isFetching: false;
|
|
2168
|
+
isSuccess: false;
|
|
2169
|
+
isError: false;
|
|
2170
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2171
|
+
isSuccess: true;
|
|
2172
|
+
isFetching: false;
|
|
2173
|
+
error: undefined;
|
|
2174
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2175
|
+
org: string;
|
|
2176
|
+
sessionId: string;
|
|
2177
|
+
count?: number;
|
|
2178
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2179
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2180
|
+
isUninitialized: false;
|
|
2181
|
+
isLoading: false;
|
|
2182
|
+
isFetching: false;
|
|
2183
|
+
isSuccess: false;
|
|
2184
|
+
isError: false;
|
|
2185
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2186
|
+
isError: true;
|
|
2187
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2188
|
+
org: string;
|
|
2189
|
+
sessionId: string;
|
|
2190
|
+
count?: number;
|
|
2191
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2192
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2193
|
+
isUninitialized: false;
|
|
2194
|
+
isLoading: false;
|
|
2195
|
+
isFetching: false;
|
|
2196
|
+
isSuccess: false;
|
|
2197
|
+
isError: false;
|
|
2198
|
+
}, "error">>)>> & {
|
|
2199
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2200
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
2201
|
+
skip?: boolean;
|
|
2202
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2203
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2204
|
+
originalArgs?: undefined | undefined;
|
|
2205
|
+
data?: undefined | undefined;
|
|
2206
|
+
error?: undefined | undefined;
|
|
2207
|
+
requestId?: undefined | undefined;
|
|
2208
|
+
endpointName?: string | undefined;
|
|
2209
|
+
startedTimeStamp?: undefined | undefined;
|
|
2210
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2211
|
+
} & {
|
|
2212
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2213
|
+
isUninitialized: false;
|
|
2214
|
+
isLoading: false;
|
|
2215
|
+
isFetching: false;
|
|
2216
|
+
isSuccess: false;
|
|
2217
|
+
isError: false;
|
|
2218
|
+
}, "isUninitialized"> & {
|
|
2219
|
+
isUninitialized: true;
|
|
2220
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2221
|
+
org: string;
|
|
2222
|
+
sessionId: string;
|
|
2223
|
+
count?: number;
|
|
2224
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2225
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2226
|
+
isUninitialized: false;
|
|
2227
|
+
isLoading: false;
|
|
2228
|
+
isFetching: false;
|
|
2229
|
+
isSuccess: false;
|
|
2230
|
+
isError: false;
|
|
2231
|
+
}, {
|
|
2232
|
+
isLoading: true;
|
|
2233
|
+
isFetching: boolean;
|
|
2234
|
+
data: undefined;
|
|
2235
|
+
} | ({
|
|
2236
|
+
isSuccess: true;
|
|
2237
|
+
isFetching: true;
|
|
2238
|
+
error: undefined;
|
|
2239
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2240
|
+
org: string;
|
|
2241
|
+
sessionId: string;
|
|
2242
|
+
count?: number;
|
|
2243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2244
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2245
|
+
isUninitialized: false;
|
|
2246
|
+
isLoading: false;
|
|
2247
|
+
isFetching: false;
|
|
2248
|
+
isSuccess: false;
|
|
2249
|
+
isError: false;
|
|
2250
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2251
|
+
isSuccess: true;
|
|
2252
|
+
isFetching: false;
|
|
2253
|
+
error: undefined;
|
|
2254
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2255
|
+
org: string;
|
|
2256
|
+
sessionId: string;
|
|
2257
|
+
count?: number;
|
|
2258
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2259
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2260
|
+
isUninitialized: false;
|
|
2261
|
+
isLoading: false;
|
|
2262
|
+
isFetching: false;
|
|
2263
|
+
isSuccess: false;
|
|
2264
|
+
isError: false;
|
|
2265
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2266
|
+
isError: true;
|
|
2267
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2268
|
+
org: string;
|
|
2269
|
+
sessionId: string;
|
|
2270
|
+
count?: number;
|
|
2271
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2272
|
+
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2273
|
+
isUninitialized: false;
|
|
2274
|
+
isLoading: false;
|
|
2275
|
+
isFetching: false;
|
|
2276
|
+
isSuccess: false;
|
|
2277
|
+
isError: false;
|
|
2278
|
+
}, "error">>)>> & {
|
|
2279
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2280
|
+
}) => R) | undefined;
|
|
2281
|
+
}, "skip">) | undefined) => [(arg: {
|
|
2282
|
+
org: string;
|
|
2283
|
+
sessionId: string;
|
|
2284
|
+
count?: number;
|
|
2285
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2286
|
+
org: string;
|
|
2287
|
+
sessionId: string;
|
|
2288
|
+
count?: number;
|
|
2289
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2290
|
+
reset: () => void;
|
|
2291
|
+
}, {
|
|
2292
|
+
lastArg: {
|
|
2293
|
+
org: string;
|
|
2294
|
+
sessionId: string;
|
|
2295
|
+
count?: number;
|
|
2296
|
+
};
|
|
1014
2297
|
}];
|
|
2298
|
+
export {};
|