@iblai/data-layer 1.1.2 → 1.1.4
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 +41055 -23773
- package/dist/index.esm.js +5430 -2801
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5515 -2799
- package/dist/index.js.map +1 -1
- package/dist/package.json +10 -7
- package/dist/src/core/index.d.ts +7 -1
- package/dist/src/features/analytics/constants.d.ts +6 -6
- package/dist/src/features/analytics/types.d.ts +9 -0
- package/dist/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/src/features/apps/api-slice.d.ts +72 -24
- package/dist/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/src/features/artifacts/constants.d.ts +42 -0
- package/dist/src/features/artifacts/index.d.ts +3 -0
- package/dist/src/features/artifacts/types.d.ts +37 -0
- package/dist/src/features/auth/types.d.ts +1 -1
- package/dist/src/features/billing/api-slice.d.ts +15 -5
- package/dist/src/features/billing/constants.d.ts +16 -0
- package/dist/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/src/features/billing/types.d.ts +35 -0
- package/dist/src/features/career/api-slice.d.ts +342 -114
- package/dist/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/src/features/chat/api-slice.d.ts +204 -68
- package/dist/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/src/features/core/api-slice.d.ts +1143 -134
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/src/features/credentials/__tests__/custom-api-slice.test.d.ts +1 -0
- package/dist/src/features/credentials/api-slice.d.ts +3706 -146
- package/dist/src/features/credentials/constants.d.ts +9 -1
- package/dist/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/src/features/credentials/types.d.ts +14 -0
- package/dist/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/src/features/index.d.ts +2 -1
- package/dist/src/features/llms/api-slice.d.ts +60 -20
- package/dist/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/src/features/mcp/constants.d.ts +57 -0
- package/dist/src/features/mcp/index.d.ts +3 -0
- package/dist/src/features/mcp/types.d.ts +176 -0
- package/dist/src/features/memory/types.d.ts +1 -0
- package/dist/src/features/mentor/api-slice.d.ts +1789 -473
- package/dist/src/features/mentor/constants.d.ts +7 -1
- package/dist/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/src/features/mentor/types.d.ts +7 -1
- package/dist/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/src/features/platform/types.d.ts +13 -0
- package/dist/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/src/features/reports/api-slice.d.ts +145 -41
- package/dist/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/src/features/search/api-slice.d.ts +117 -39
- package/dist/src/features/search/constants.d.ts +10 -0
- package/dist/src/features/search/types.d.ts +72 -0
- package/dist/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/src/features/skills/api-slice.d.ts +231 -77
- package/dist/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/src/features/tools/api-slice.d.ts +60 -20
- package/dist/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/src/index.d.ts +6 -0
- package/dist/tests/features/billing/constants.test.d.ts +1 -0
- package/dist/tests/features/billing/custom-api-slice.test.d.ts +1 -0
- package/dist/tests/features/billing/types.test.d.ts +1 -0
- package/package.json +10 -7
- package/dist/tsconfig.tsbuildinfo +0 -1
|
@@ -1,14 +1,22 @@
|
|
|
1
|
-
export declare const appApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1
|
+
export declare const appApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
getUserApps: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
5
|
page?: number;
|
|
4
6
|
pageSize?: number;
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
7
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
8
|
+
attempt?: number;
|
|
9
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>;
|
|
6
10
|
updateUserOnboardingStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
7
11
|
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
8
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
12
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
13
|
+
attempt?: number;
|
|
14
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").OnboardingStatusUpdate, "appApiSlice", any>;
|
|
9
15
|
updateUserTrialStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
10
16
|
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
11
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
17
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
18
|
+
attempt?: number;
|
|
19
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").ActivateUserFreeTrial, "appApiSlice", any>;
|
|
12
20
|
}, "appApiSlice", "apps", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
13
21
|
export declare const appApiReducer: typeof appApiSlice.reducer;
|
|
14
22
|
export declare const useGetUserAppsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -32,7 +40,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
32
40
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
33
41
|
page?: number;
|
|
34
42
|
pageSize?: number;
|
|
35
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
43
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
44
|
+
attempt?: number;
|
|
45
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
36
46
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
37
47
|
isUninitialized: false;
|
|
38
48
|
isLoading: false;
|
|
@@ -50,7 +60,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
50
60
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
51
61
|
page?: number;
|
|
52
62
|
pageSize?: number;
|
|
53
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
63
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
64
|
+
attempt?: number;
|
|
65
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
54
66
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
55
67
|
isUninitialized: false;
|
|
56
68
|
isLoading: false;
|
|
@@ -64,7 +76,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
64
76
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
65
77
|
page?: number;
|
|
66
78
|
pageSize?: number;
|
|
67
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
79
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
80
|
+
attempt?: number;
|
|
81
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
68
82
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
69
83
|
isUninitialized: false;
|
|
70
84
|
isLoading: false;
|
|
@@ -76,7 +90,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
76
90
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
77
91
|
page?: number;
|
|
78
92
|
pageSize?: number;
|
|
79
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
93
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
94
|
+
attempt?: number;
|
|
95
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
80
96
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
81
97
|
isUninitialized: false;
|
|
82
98
|
isLoading: false;
|
|
@@ -114,7 +130,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
114
130
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
115
131
|
page?: number;
|
|
116
132
|
pageSize?: number;
|
|
117
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
133
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
134
|
+
attempt?: number;
|
|
135
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
118
136
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
119
137
|
isUninitialized: false;
|
|
120
138
|
isLoading: false;
|
|
@@ -132,7 +150,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
132
150
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
133
151
|
page?: number;
|
|
134
152
|
pageSize?: number;
|
|
135
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
153
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
154
|
+
attempt?: number;
|
|
155
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
136
156
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
137
157
|
isUninitialized: false;
|
|
138
158
|
isLoading: false;
|
|
@@ -146,7 +166,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
146
166
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
147
167
|
page?: number;
|
|
148
168
|
pageSize?: number;
|
|
149
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
169
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
170
|
+
attempt?: number;
|
|
171
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
150
172
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
151
173
|
isUninitialized: false;
|
|
152
174
|
isLoading: false;
|
|
@@ -158,7 +180,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
158
180
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
159
181
|
page?: number;
|
|
160
182
|
pageSize?: number;
|
|
161
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
183
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
184
|
+
attempt?: number;
|
|
185
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
162
186
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
163
187
|
isUninitialized: false;
|
|
164
188
|
isLoading: false;
|
|
@@ -172,7 +196,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
172
196
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
173
197
|
page?: number;
|
|
174
198
|
pageSize?: number;
|
|
175
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
199
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
200
|
+
attempt?: number;
|
|
201
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>>;
|
|
176
202
|
}, useLazyGetUserAppsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
177
203
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
178
204
|
originalArgs?: undefined | undefined;
|
|
@@ -194,7 +220,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
194
220
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
195
221
|
page?: number;
|
|
196
222
|
pageSize?: number;
|
|
197
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
223
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
224
|
+
attempt?: number;
|
|
225
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
198
226
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
199
227
|
isUninitialized: false;
|
|
200
228
|
isLoading: false;
|
|
@@ -212,7 +240,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
212
240
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
213
241
|
page?: number;
|
|
214
242
|
pageSize?: number;
|
|
215
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
244
|
+
attempt?: number;
|
|
245
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
216
246
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
217
247
|
isUninitialized: false;
|
|
218
248
|
isLoading: false;
|
|
@@ -226,7 +256,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
226
256
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
227
257
|
page?: number;
|
|
228
258
|
pageSize?: number;
|
|
229
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
259
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
260
|
+
attempt?: number;
|
|
261
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
230
262
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
231
263
|
isUninitialized: false;
|
|
232
264
|
isLoading: false;
|
|
@@ -238,7 +270,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
238
270
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
239
271
|
page?: number;
|
|
240
272
|
pageSize?: number;
|
|
241
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
273
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
274
|
+
attempt?: number;
|
|
275
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
242
276
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
243
277
|
isUninitialized: false;
|
|
244
278
|
isLoading: false;
|
|
@@ -270,7 +304,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
270
304
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
271
305
|
page?: number;
|
|
272
306
|
pageSize?: number;
|
|
273
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
307
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
308
|
+
attempt?: number;
|
|
309
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
274
310
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
275
311
|
isUninitialized: false;
|
|
276
312
|
isLoading: false;
|
|
@@ -288,7 +324,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
288
324
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
289
325
|
page?: number;
|
|
290
326
|
pageSize?: number;
|
|
291
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
327
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
328
|
+
attempt?: number;
|
|
329
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
292
330
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
293
331
|
isUninitialized: false;
|
|
294
332
|
isLoading: false;
|
|
@@ -302,7 +340,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
302
340
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
303
341
|
page?: number;
|
|
304
342
|
pageSize?: number;
|
|
305
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
343
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
344
|
+
attempt?: number;
|
|
345
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
306
346
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
307
347
|
isUninitialized: false;
|
|
308
348
|
isLoading: false;
|
|
@@ -314,7 +354,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
314
354
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
315
355
|
page?: number;
|
|
316
356
|
pageSize?: number;
|
|
317
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
357
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
358
|
+
attempt?: number;
|
|
359
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>> & {
|
|
318
360
|
currentData?: import("@iblai/iblai-api").PaginatedUserAppList | undefined;
|
|
319
361
|
isUninitialized: false;
|
|
320
362
|
isLoading: false;
|
|
@@ -330,7 +372,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
330
372
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
331
373
|
page?: number;
|
|
332
374
|
pageSize?: number;
|
|
333
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
375
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
376
|
+
attempt?: number;
|
|
377
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").PaginatedUserAppList, "appApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
334
378
|
reset: () => void;
|
|
335
379
|
}, {
|
|
336
380
|
lastArg: {
|
|
@@ -498,7 +542,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
498
542
|
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
499
543
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
500
544
|
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
501
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
545
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
546
|
+
attempt?: number;
|
|
547
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").OnboardingStatusUpdate, "appApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
502
548
|
originalArgs?: {
|
|
503
549
|
requestBody: import("@iblai/iblai-api").OnboardingStatusUpdate;
|
|
504
550
|
} | undefined;
|
|
@@ -664,7 +710,9 @@ export declare const useGetUserAppsQuery: <R extends Record<string, any> = impor
|
|
|
664
710
|
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
665
711
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
666
712
|
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
667
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
713
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
714
|
+
attempt?: number;
|
|
715
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apps", import("@iblai/iblai-api").ActivateUserFreeTrial, "appApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
668
716
|
originalArgs?: {
|
|
669
717
|
requestBody: import("@iblai/iblai-api").ActivateUserFreeTrial;
|
|
670
718
|
} | undefined;
|