@iblai/web-utils 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-layer/src/core/index.d.ts +7 -1
- package/dist/data-layer/src/features/analytics/constants.d.ts +6 -6
- package/dist/data-layer/src/features/analytics/types.d.ts +9 -0
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/data-layer/src/features/apps/api-slice.d.ts +72 -24
- package/dist/data-layer/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/data-layer/src/features/artifacts/constants.d.ts +42 -0
- package/dist/data-layer/src/features/artifacts/types.d.ts +37 -0
- package/dist/data-layer/src/features/auth/types.d.ts +1 -1
- package/dist/data-layer/src/features/billing/api-slice.d.ts +15 -5
- package/dist/data-layer/src/features/billing/constants.d.ts +16 -0
- package/dist/data-layer/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/data-layer/src/features/billing/types.d.ts +35 -0
- package/dist/data-layer/src/features/career/api-slice.d.ts +342 -114
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/data-layer/src/features/chat/api-slice.d.ts +204 -68
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/data-layer/src/features/core/api-slice.d.ts +1253 -134
- package/dist/data-layer/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +3728 -146
- package/dist/data-layer/src/features/credentials/constants.d.ts +9 -1
- package/dist/data-layer/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/data-layer/src/features/credentials/types.d.ts +14 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/data-layer/src/features/llms/api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/data-layer/src/features/mcp/constants.d.ts +57 -0
- package/dist/data-layer/src/features/mcp/types.d.ts +176 -0
- package/dist/data-layer/src/features/memory/types.d.ts +1 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1789 -473
- package/dist/data-layer/src/features/mentor/constants.d.ts +7 -1
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +7 -1
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/data-layer/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/data-layer/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/data-layer/src/features/platform/types.d.ts +13 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/data-layer/src/features/reports/api-slice.d.ts +145 -41
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/data-layer/src/features/search/api-slice.d.ts +117 -39
- package/dist/data-layer/src/features/search/constants.d.ts +10 -0
- package/dist/data-layer/src/features/search/types.d.ts +72 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/data-layer/src/features/skills/api-slice.d.ts +231 -77
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/data-layer/src/features/tools/api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/data-layer/src/index.d.ts +6 -0
- package/dist/index.d.ts +369 -35
- package/dist/index.esm.js +17101 -13426
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +17074 -13371
- package/dist/index.js.map +1 -1
- package/dist/package.json +25 -14
- package/dist/web-utils/src/__tests__/index.mobile.test.d.ts +7 -0
- package/dist/web-utils/src/__tests__/index.web.test.d.ts +8 -0
- package/dist/web-utils/src/constants/__tests__/chat.test.d.ts +1 -0
- package/dist/web-utils/src/constants/chat.d.ts +1 -1
- package/dist/web-utils/src/features/chat/__tests__/slice.test.d.ts +1 -0
- package/dist/web-utils/src/features/chat/slice.d.ts +37 -2
- package/dist/web-utils/src/features/csv/combine-csv.d.ts +35 -0
- package/dist/web-utils/src/features/csv/index.d.ts +1 -0
- package/dist/web-utils/src/features/files/__tests__/filesSlice.test.d.ts +1 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/hoc/index.d.ts +2 -0
- package/dist/web-utils/src/hoc/with-permissions.d.ts +44 -0
- package/dist/web-utils/src/hooks/__tests__/use-mentor-settings.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/ollama-client.d.ts +57 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +11 -5
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +59 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-chat.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +2 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription-v2/constants.d.ts +5 -0
- package/dist/web-utils/src/hooks/subscription-v2/use-subscription-handler.d.ts +56 -1
- package/dist/web-utils/src/hooks/tenant-metadata/__tests__/config-loader.test.d.ts +10 -0
- package/dist/web-utils/src/hooks/tenant-metadata/__tests__/use-tenant-metadata.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -1
- package/dist/web-utils/src/index.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +130 -10
- package/dist/web-utils/src/index.web.d.ts +174 -12
- package/dist/web-utils/src/providers/__tests__/mentor-provider.test.d.ts +1 -0
- package/dist/web-utils/src/providers/__tests__/tenant-provider.test.d.ts +1 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +5 -2
- package/dist/web-utils/src/providers/mentor-provider.d.ts +2 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +7 -2
- package/dist/web-utils/src/types/index.d.ts +1 -0
- package/dist/web-utils/src/types/subscription.d.ts +21 -0
- package/dist/web-utils/src/utils/__tests__/auth.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/constants.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/helpers.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/platform.test.d.ts +1 -0
- package/dist/web-utils/src/utils/constants.d.ts +1 -0
- package/dist/web-utils/src/utils/data/__tests__/advanced-tab.test.d.ts +1 -0
- package/dist/web-utils/src/utils/helpers.d.ts +6 -0
- package/dist/web-utils/src/utils/index.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +1 -0
- package/dist/web-utils/tests/hooks/chat/use-mentor-tools.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription-v2/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-mentor-settings.test.d.ts +1 -0
- package/dist/web-utils/tests/providers/mentor-provider.test.d.ts +1 -0
- package/dist/web-utils/tests/providers/tenant-provider.test.d.ts +1 -0
- package/dist/web-utils/tests/utils/helpers.test.d.ts +1 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +24 -14
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import { BaseQueryFn } from '@reduxjs/toolkit/query/react';
|
|
1
2
|
import { StorageService } from '../services/StorageService';
|
|
2
3
|
export declare class IblDataLayer {
|
|
3
4
|
static storage: StorageService;
|
|
4
5
|
}
|
|
5
|
-
export declare const
|
|
6
|
+
export declare const fakeBaseQueryWithLogging: BaseQueryFn<void, unknown, unknown, {
|
|
7
|
+
attempt?: number;
|
|
8
|
+
}>;
|
|
9
|
+
export declare const iblFakeBaseQuery: BaseQueryFn<void, unknown, unknown, {
|
|
10
|
+
attempt?: number;
|
|
11
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>;
|
|
@@ -53,27 +53,27 @@ export declare const ANALYTICS_ENDPOINTS: {
|
|
|
53
53
|
export declare const NON_AI_ANALYTICS_ENDPOINTS: {
|
|
54
54
|
GET_TOPICS_STATS: {
|
|
55
55
|
service: SERVICES;
|
|
56
|
-
path: (date_filter: string, platform_key: string, mentor_unique_id?: string) => string;
|
|
56
|
+
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, usergroup_ids?: number[]) => string;
|
|
57
57
|
};
|
|
58
58
|
GET_USERS_STATS: {
|
|
59
59
|
service: SERVICES;
|
|
60
|
-
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, metric?: string, start_date?: string, end_date?: string) => string;
|
|
60
|
+
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, metric?: string, start_date?: string, end_date?: string, usergroup_ids?: number[]) => string;
|
|
61
61
|
};
|
|
62
62
|
GET_SESSION_STATS: {
|
|
63
63
|
service: SERVICES;
|
|
64
|
-
path: (platform_key: string, mentor_unique_id?: string, date_filter?: string, start_date?: string, end_date?: string, metric?: string) => string;
|
|
64
|
+
path: (platform_key: string, mentor_unique_id?: string, date_filter?: string, start_date?: string, end_date?: string, metric?: string, usergroup_ids?: number[]) => string;
|
|
65
65
|
};
|
|
66
66
|
GET_TOPICS_DETAILS_STATS: {
|
|
67
67
|
service: SERVICES;
|
|
68
|
-
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, start_date?: string, end_date?: string) => string;
|
|
68
|
+
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, start_date?: string, end_date?: string, usergroup_ids?: number[]) => string;
|
|
69
69
|
};
|
|
70
70
|
GET_ACCESS_TIME_HEATMAP: {
|
|
71
71
|
service: SERVICES;
|
|
72
|
-
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, start_date?: string, end_date?: string) => string;
|
|
72
|
+
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, start_date?: string, end_date?: string, usergroup_ids?: number[]) => string;
|
|
73
73
|
};
|
|
74
74
|
GET_USER_DETAILS_STATS: {
|
|
75
75
|
service: SERVICES;
|
|
76
|
-
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, start_date?: string, end_date?: string, page?: number, limit?: number, search?: string) => string;
|
|
76
|
+
path: (date_filter: string, platform_key: string, mentor_unique_id?: string, start_date?: string, end_date?: string, page?: number, limit?: number, search?: string, usergroup_ids?: number[]) => string;
|
|
77
77
|
};
|
|
78
78
|
GET_AVERAGE_RATING: {
|
|
79
79
|
service: SERVICES;
|
|
@@ -53,6 +53,7 @@ export interface TranscriptsMessagesArgs {
|
|
|
53
53
|
platform_key: string;
|
|
54
54
|
page?: number;
|
|
55
55
|
limit?: number;
|
|
56
|
+
usergroup_ids?: number[];
|
|
56
57
|
}
|
|
57
58
|
export interface TranscriptsMessagesDetailsArgs {
|
|
58
59
|
session_id: string;
|
|
@@ -181,6 +182,7 @@ export interface TopicsStatsArgs {
|
|
|
181
182
|
date_filter: DateFilter;
|
|
182
183
|
platform_key: string;
|
|
183
184
|
mentor_unique_id?: string;
|
|
185
|
+
usergroup_ids?: number[];
|
|
184
186
|
}
|
|
185
187
|
export interface TopicsStatsResponse {
|
|
186
188
|
topics: {
|
|
@@ -219,6 +221,7 @@ export interface UsersStatsArgs {
|
|
|
219
221
|
start_date?: string;
|
|
220
222
|
end_date?: string;
|
|
221
223
|
mentor_unique_id?: string;
|
|
224
|
+
usergroup_ids?: number[];
|
|
222
225
|
}
|
|
223
226
|
export interface SessionStatsArgs {
|
|
224
227
|
platform_key: string;
|
|
@@ -227,6 +230,7 @@ export interface SessionStatsArgs {
|
|
|
227
230
|
start_date?: string;
|
|
228
231
|
end_date?: string;
|
|
229
232
|
metric?: string;
|
|
233
|
+
usergroup_ids?: number[];
|
|
230
234
|
}
|
|
231
235
|
export interface SessionStatsResponse {
|
|
232
236
|
metric: string;
|
|
@@ -256,6 +260,7 @@ export interface TopicsDetailsStatsArgs {
|
|
|
256
260
|
start_date?: string;
|
|
257
261
|
end_date?: string;
|
|
258
262
|
mentor_unique_id?: string;
|
|
263
|
+
usergroup_ids?: number[];
|
|
259
264
|
}
|
|
260
265
|
export interface TopicsDetailsStatsResponse {
|
|
261
266
|
results: Array<{
|
|
@@ -283,6 +288,7 @@ export interface AccessTimeHeatmapArgs {
|
|
|
283
288
|
start_date?: string;
|
|
284
289
|
end_date?: string;
|
|
285
290
|
mentor_unique_id?: string;
|
|
291
|
+
usergroup_ids?: number[];
|
|
286
292
|
}
|
|
287
293
|
export interface AccessTimeHeatmapResponse {
|
|
288
294
|
metric: string;
|
|
@@ -301,6 +307,7 @@ export interface UserDetailsStatsArgs {
|
|
|
301
307
|
limit?: number;
|
|
302
308
|
mentor_unique_id?: string;
|
|
303
309
|
search?: string;
|
|
310
|
+
usergroup_ids?: number[];
|
|
304
311
|
}
|
|
305
312
|
export interface UserDetailsStatsResponse {
|
|
306
313
|
results: Array<{
|
|
@@ -328,6 +335,7 @@ export interface FinancialStatsArgs {
|
|
|
328
335
|
start_date?: string;
|
|
329
336
|
end_date?: string;
|
|
330
337
|
all_time?: 'true';
|
|
338
|
+
usergroup_ids?: number[];
|
|
331
339
|
}
|
|
332
340
|
export interface FinancialStatsFilters {
|
|
333
341
|
start_date: string;
|
|
@@ -365,6 +373,7 @@ export interface DetailedFinancialStatsArgs {
|
|
|
365
373
|
page?: number;
|
|
366
374
|
limit?: number;
|
|
367
375
|
search?: string;
|
|
376
|
+
usergroup_ids?: number[];
|
|
368
377
|
}
|
|
369
378
|
export interface DetailedFinancialStatsMetric {
|
|
370
379
|
name: string;
|
|
@@ -1,14 +1,22 @@
|
|
|
1
|
-
export declare const apiKeysApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1
|
+
export declare const apiKeysApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
getApiKeys: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
5
|
platformKey: string;
|
|
4
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
6
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7
|
+
attempt?: number;
|
|
8
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>;
|
|
5
9
|
createApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6
10
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
7
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
11
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
12
|
+
attempt?: number;
|
|
13
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey, "apiKeysApiSlice", any>;
|
|
8
14
|
deleteApiKey: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
9
15
|
name: string;
|
|
10
16
|
platformKey: string;
|
|
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, {}>, "apiKeys", void, "apiKeysApiSlice", any>;
|
|
12
20
|
}, "apiKeysApiSlice", "apiKeys", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
13
21
|
export declare const apiKeysApiReducer: typeof apiKeysApiSlice.reducer;
|
|
14
22
|
export declare const useGetApiKeysQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -31,7 +39,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
31
39
|
isUninitialized: true;
|
|
32
40
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
33
41
|
platformKey: string;
|
|
34
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
42
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
43
|
+
attempt?: number;
|
|
44
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
35
45
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
36
46
|
isUninitialized: false;
|
|
37
47
|
isLoading: false;
|
|
@@ -48,7 +58,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
48
58
|
error: undefined;
|
|
49
59
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
50
60
|
platformKey: string;
|
|
51
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
61
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
62
|
+
attempt?: number;
|
|
63
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
52
64
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
53
65
|
isUninitialized: false;
|
|
54
66
|
isLoading: false;
|
|
@@ -61,7 +73,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
61
73
|
error: undefined;
|
|
62
74
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
63
75
|
platformKey: string;
|
|
64
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
76
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
77
|
+
attempt?: number;
|
|
78
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
65
79
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
66
80
|
isUninitialized: false;
|
|
67
81
|
isLoading: false;
|
|
@@ -72,7 +86,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
72
86
|
isError: true;
|
|
73
87
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
74
88
|
platformKey: string;
|
|
75
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
89
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
90
|
+
attempt?: number;
|
|
91
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
76
92
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
77
93
|
isUninitialized: false;
|
|
78
94
|
isLoading: false;
|
|
@@ -108,7 +124,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
108
124
|
isUninitialized: true;
|
|
109
125
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
110
126
|
platformKey: string;
|
|
111
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
127
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
128
|
+
attempt?: number;
|
|
129
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
112
130
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
113
131
|
isUninitialized: false;
|
|
114
132
|
isLoading: false;
|
|
@@ -125,7 +143,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
125
143
|
error: undefined;
|
|
126
144
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
127
145
|
platformKey: string;
|
|
128
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
146
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
147
|
+
attempt?: number;
|
|
148
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
129
149
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
130
150
|
isUninitialized: false;
|
|
131
151
|
isLoading: false;
|
|
@@ -138,7 +158,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
138
158
|
error: undefined;
|
|
139
159
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
140
160
|
platformKey: string;
|
|
141
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
161
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
162
|
+
attempt?: number;
|
|
163
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
142
164
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
143
165
|
isUninitialized: false;
|
|
144
166
|
isLoading: false;
|
|
@@ -149,7 +171,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
149
171
|
isError: true;
|
|
150
172
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
151
173
|
platformKey: string;
|
|
152
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
174
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
175
|
+
attempt?: number;
|
|
176
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
153
177
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
154
178
|
isUninitialized: false;
|
|
155
179
|
isLoading: false;
|
|
@@ -162,7 +186,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
162
186
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
163
187
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
164
188
|
platformKey: string;
|
|
165
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
189
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
190
|
+
attempt?: number;
|
|
191
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>>;
|
|
166
192
|
}, useLazyGetApiKeysQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
167
193
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
168
194
|
originalArgs?: undefined | undefined;
|
|
@@ -183,7 +209,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
183
209
|
isUninitialized: true;
|
|
184
210
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
185
211
|
platformKey: string;
|
|
186
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
212
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
213
|
+
attempt?: number;
|
|
214
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
187
215
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
188
216
|
isUninitialized: false;
|
|
189
217
|
isLoading: false;
|
|
@@ -200,7 +228,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
200
228
|
error: undefined;
|
|
201
229
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
202
230
|
platformKey: string;
|
|
203
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
231
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
232
|
+
attempt?: number;
|
|
233
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
204
234
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
205
235
|
isUninitialized: false;
|
|
206
236
|
isLoading: false;
|
|
@@ -213,7 +243,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
213
243
|
error: undefined;
|
|
214
244
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
215
245
|
platformKey: string;
|
|
216
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
246
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
247
|
+
attempt?: number;
|
|
248
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
217
249
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
218
250
|
isUninitialized: false;
|
|
219
251
|
isLoading: false;
|
|
@@ -224,7 +256,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
224
256
|
isError: true;
|
|
225
257
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
226
258
|
platformKey: string;
|
|
227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
259
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
260
|
+
attempt?: number;
|
|
261
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
228
262
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
229
263
|
isUninitialized: false;
|
|
230
264
|
isLoading: false;
|
|
@@ -255,7 +289,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
255
289
|
isUninitialized: true;
|
|
256
290
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
257
291
|
platformKey: string;
|
|
258
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
292
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
293
|
+
attempt?: number;
|
|
294
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
259
295
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
260
296
|
isUninitialized: false;
|
|
261
297
|
isLoading: false;
|
|
@@ -272,7 +308,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
272
308
|
error: undefined;
|
|
273
309
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
274
310
|
platformKey: string;
|
|
275
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
311
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
312
|
+
attempt?: number;
|
|
313
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
276
314
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
277
315
|
isUninitialized: false;
|
|
278
316
|
isLoading: false;
|
|
@@ -285,7 +323,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
285
323
|
error: undefined;
|
|
286
324
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
287
325
|
platformKey: string;
|
|
288
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
326
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
327
|
+
attempt?: number;
|
|
328
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
289
329
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
290
330
|
isUninitialized: false;
|
|
291
331
|
isLoading: false;
|
|
@@ -296,7 +336,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
296
336
|
isError: true;
|
|
297
337
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
298
338
|
platformKey: string;
|
|
299
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
339
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
340
|
+
attempt?: number;
|
|
341
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>> & {
|
|
300
342
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[] | undefined;
|
|
301
343
|
isUninitialized: false;
|
|
302
344
|
isLoading: false;
|
|
@@ -310,7 +352,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
310
352
|
platformKey: string;
|
|
311
353
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
312
354
|
platformKey: string;
|
|
313
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
355
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
356
|
+
attempt?: number;
|
|
357
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey[], "apiKeysApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
314
358
|
reset: () => void;
|
|
315
359
|
}, {
|
|
316
360
|
lastArg: {
|
|
@@ -477,7 +521,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
477
521
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
478
522
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
479
523
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
480
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
524
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
525
|
+
attempt?: number;
|
|
526
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey, "apiKeysApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
481
527
|
originalArgs?: {
|
|
482
528
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformApiKey;
|
|
483
529
|
} | undefined;
|
|
@@ -645,7 +691,9 @@ export declare const useGetApiKeysQuery: <R extends Record<string, any> = import
|
|
|
645
691
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
646
692
|
name: string;
|
|
647
693
|
platformKey: string;
|
|
648
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
694
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
695
|
+
attempt?: number;
|
|
696
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "apiKeys", void, "apiKeysApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
649
697
|
originalArgs?: {
|
|
650
698
|
name: string;
|
|
651
699
|
platformKey: string;
|