@iblai/web-utils 1.1.2 → 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 +1143 -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 +3706 -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 +367 -33
- package/dist/index.esm.js +7619 -3934
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7644 -3931
- package/dist/index.js.map +1 -1
- package/dist/package.json +22 -12
- 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 +10 -4
- 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/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 -1
- package/package.json +22 -12
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1
|
+
export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
getUserInvitations: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
5
|
active?: boolean;
|
|
4
6
|
email?: string;
|
|
@@ -10,7 +12,9 @@ export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").A
|
|
|
10
12
|
source?: string;
|
|
11
13
|
username?: string;
|
|
12
14
|
verbose?: boolean;
|
|
13
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
15
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
16
|
+
attempt?: number;
|
|
17
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>;
|
|
14
18
|
createUserInvitation: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
15
19
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
16
20
|
active?: boolean;
|
|
@@ -23,7 +27,9 @@ export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").A
|
|
|
23
27
|
source?: string;
|
|
24
28
|
username?: string;
|
|
25
29
|
verbose?: boolean;
|
|
26
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
30
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
31
|
+
attempt?: number;
|
|
32
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail, "userInvitationsApiSlice", any>;
|
|
27
33
|
}, "userInvitationsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
28
34
|
export declare const useGetUserInvitationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
29
35
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -54,7 +60,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
54
60
|
source?: string;
|
|
55
61
|
username?: string;
|
|
56
62
|
verbose?: boolean;
|
|
57
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
63
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
64
|
+
attempt?: number;
|
|
65
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
58
66
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
59
67
|
isUninitialized: false;
|
|
60
68
|
isLoading: false;
|
|
@@ -80,7 +88,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
80
88
|
source?: string;
|
|
81
89
|
username?: string;
|
|
82
90
|
verbose?: boolean;
|
|
83
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
91
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
92
|
+
attempt?: number;
|
|
93
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
84
94
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
85
95
|
isUninitialized: false;
|
|
86
96
|
isLoading: false;
|
|
@@ -102,7 +112,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
102
112
|
source?: string;
|
|
103
113
|
username?: string;
|
|
104
114
|
verbose?: boolean;
|
|
105
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
115
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
116
|
+
attempt?: number;
|
|
117
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
106
118
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
107
119
|
isUninitialized: false;
|
|
108
120
|
isLoading: false;
|
|
@@ -122,7 +134,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
122
134
|
source?: string;
|
|
123
135
|
username?: string;
|
|
124
136
|
verbose?: boolean;
|
|
125
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
137
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
138
|
+
attempt?: number;
|
|
139
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
126
140
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
127
141
|
isUninitialized: false;
|
|
128
142
|
isLoading: false;
|
|
@@ -176,7 +190,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
176
190
|
source?: string;
|
|
177
191
|
username?: string;
|
|
178
192
|
verbose?: boolean;
|
|
179
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
193
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
194
|
+
attempt?: number;
|
|
195
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
180
196
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
181
197
|
isUninitialized: false;
|
|
182
198
|
isLoading: false;
|
|
@@ -202,7 +218,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
202
218
|
source?: string;
|
|
203
219
|
username?: string;
|
|
204
220
|
verbose?: boolean;
|
|
205
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
221
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
222
|
+
attempt?: number;
|
|
223
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
206
224
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
207
225
|
isUninitialized: false;
|
|
208
226
|
isLoading: false;
|
|
@@ -224,7 +242,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
224
242
|
source?: string;
|
|
225
243
|
username?: string;
|
|
226
244
|
verbose?: boolean;
|
|
227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
245
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
246
|
+
attempt?: number;
|
|
247
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
228
248
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
229
249
|
isUninitialized: false;
|
|
230
250
|
isLoading: false;
|
|
@@ -244,7 +264,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
244
264
|
source?: string;
|
|
245
265
|
username?: string;
|
|
246
266
|
verbose?: boolean;
|
|
247
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
267
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
268
|
+
attempt?: number;
|
|
269
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
248
270
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
249
271
|
isUninitialized: false;
|
|
250
272
|
isLoading: false;
|
|
@@ -266,7 +288,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
266
288
|
source?: string;
|
|
267
289
|
username?: string;
|
|
268
290
|
verbose?: boolean;
|
|
269
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
291
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
292
|
+
attempt?: number;
|
|
293
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>>;
|
|
270
294
|
}, useLazyGetUserInvitationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
271
295
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
272
296
|
originalArgs?: undefined | undefined;
|
|
@@ -296,7 +320,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
296
320
|
source?: string;
|
|
297
321
|
username?: string;
|
|
298
322
|
verbose?: boolean;
|
|
299
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
323
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
324
|
+
attempt?: number;
|
|
325
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
300
326
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
301
327
|
isUninitialized: false;
|
|
302
328
|
isLoading: false;
|
|
@@ -322,7 +348,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
322
348
|
source?: string;
|
|
323
349
|
username?: string;
|
|
324
350
|
verbose?: boolean;
|
|
325
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
351
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
352
|
+
attempt?: number;
|
|
353
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
326
354
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
327
355
|
isUninitialized: false;
|
|
328
356
|
isLoading: false;
|
|
@@ -344,7 +372,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
344
372
|
source?: string;
|
|
345
373
|
username?: string;
|
|
346
374
|
verbose?: boolean;
|
|
347
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
375
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
376
|
+
attempt?: number;
|
|
377
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
348
378
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
349
379
|
isUninitialized: false;
|
|
350
380
|
isLoading: false;
|
|
@@ -364,7 +394,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
364
394
|
source?: string;
|
|
365
395
|
username?: string;
|
|
366
396
|
verbose?: boolean;
|
|
367
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
397
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
398
|
+
attempt?: number;
|
|
399
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
368
400
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
369
401
|
isUninitialized: false;
|
|
370
402
|
isLoading: false;
|
|
@@ -404,7 +436,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
404
436
|
source?: string;
|
|
405
437
|
username?: string;
|
|
406
438
|
verbose?: boolean;
|
|
407
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
439
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
440
|
+
attempt?: number;
|
|
441
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
408
442
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
409
443
|
isUninitialized: false;
|
|
410
444
|
isLoading: false;
|
|
@@ -430,7 +464,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
430
464
|
source?: string;
|
|
431
465
|
username?: string;
|
|
432
466
|
verbose?: boolean;
|
|
433
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
467
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
468
|
+
attempt?: number;
|
|
469
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
434
470
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
435
471
|
isUninitialized: false;
|
|
436
472
|
isLoading: false;
|
|
@@ -452,7 +488,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
452
488
|
source?: string;
|
|
453
489
|
username?: string;
|
|
454
490
|
verbose?: boolean;
|
|
455
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
491
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
492
|
+
attempt?: number;
|
|
493
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
456
494
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
457
495
|
isUninitialized: false;
|
|
458
496
|
isLoading: false;
|
|
@@ -472,7 +510,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
472
510
|
source?: string;
|
|
473
511
|
username?: string;
|
|
474
512
|
verbose?: boolean;
|
|
475
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
513
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
514
|
+
attempt?: number;
|
|
515
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
476
516
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
477
517
|
isUninitialized: false;
|
|
478
518
|
isLoading: false;
|
|
@@ -504,7 +544,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
504
544
|
source?: string;
|
|
505
545
|
username?: string;
|
|
506
546
|
verbose?: boolean;
|
|
507
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
547
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
548
|
+
attempt?: number;
|
|
549
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
508
550
|
reset: () => void;
|
|
509
551
|
}, {
|
|
510
552
|
lastArg: {
|
|
@@ -700,7 +742,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
700
742
|
source?: string;
|
|
701
743
|
username?: string;
|
|
702
744
|
verbose?: boolean;
|
|
703
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
745
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
746
|
+
attempt?: number;
|
|
747
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail, "userInvitationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
704
748
|
originalArgs?: {
|
|
705
749
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
706
750
|
active?: boolean;
|
|
@@ -23,6 +23,7 @@ export * from './features/credentials/types';
|
|
|
23
23
|
export * from './features/user-invitations/api-slice';
|
|
24
24
|
export * from './features/apps/api-slice';
|
|
25
25
|
export * from './features/billing/api-slice';
|
|
26
|
+
export * from './features/billing/custom-api-slice';
|
|
26
27
|
export * from './features/stripe/types';
|
|
27
28
|
export * from './features/stripe/api-slice';
|
|
28
29
|
export * from './features/sessions/api-slice';
|
|
@@ -35,6 +36,7 @@ export * from './features/catalog/api-slice';
|
|
|
35
36
|
export * from './features/per-learner/api-slice';
|
|
36
37
|
export * from './features/search/api-slice';
|
|
37
38
|
export * from './features/career/api-slice';
|
|
39
|
+
export * from './features/artifacts/api-slice';
|
|
38
40
|
export * from './constants';
|
|
39
41
|
export * from './config';
|
|
40
42
|
export * from './services/StorageService';
|
|
@@ -48,11 +50,15 @@ export * from './features/notifications/custom-api-slice';
|
|
|
48
50
|
export * from './features/notifications/types';
|
|
49
51
|
export * from './features/notifications/constants';
|
|
50
52
|
export * from './features/mentor/custom-api-slice';
|
|
53
|
+
export * from './features/moderation-logs/api-slice';
|
|
51
54
|
export * from './features/mentor/constants';
|
|
52
55
|
export * from './features/mentor/types';
|
|
53
56
|
export * from './features/memory/api-slice';
|
|
54
57
|
export * from './features/memory/constants';
|
|
55
58
|
export * from './features/memory/types';
|
|
59
|
+
export * from './features/mcp/api-slice';
|
|
60
|
+
export * from './features/mcp/constants';
|
|
61
|
+
export * from './features/mcp/types';
|
|
56
62
|
export * from './features/constants';
|
|
57
63
|
export * from './features/custom-domain/api-slice';
|
|
58
64
|
export * from './features/custom-domain/types';
|