@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,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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>;
|
|
14
18
|
createUserInvitation: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
15
19
|
requestBody: import("@iblai/iblai-api").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("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
58
66
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
84
94
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
106
118
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
126
140
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
180
196
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
206
224
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
228
248
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
248
270
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
300
326
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
326
354
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
348
378
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
368
400
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
408
442
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
434
470
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
456
494
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
476
516
|
currentData?: import("@iblai/iblai-api").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("@iblai/iblai-api").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("@iblai/iblai-api").PlatformInvitationDetail, "userInvitationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
704
748
|
originalArgs?: {
|
|
705
749
|
requestBody: import("@iblai/iblai-api").PlatformInvitationCreate;
|
|
706
750
|
active?: boolean;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iblai/data-layer",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "ibl.ai data layer",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"module": "dist/index.esm.js",
|
|
8
8
|
"type": "module",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": "25.3.0"
|
|
11
|
+
},
|
|
9
12
|
"exports": {
|
|
10
13
|
".": {
|
|
11
14
|
"import": "./dist/index.esm.js",
|
|
@@ -25,14 +28,14 @@
|
|
|
25
28
|
"author": "iblai",
|
|
26
29
|
"license": "ISC",
|
|
27
30
|
"devDependencies": {
|
|
28
|
-
"@eslint/js": "^9.39.
|
|
31
|
+
"@eslint/js": "^9.39.2",
|
|
29
32
|
"@rollup/plugin-commonjs": "25.0.8",
|
|
30
33
|
"@rollup/plugin-node-resolve": "15.3.1",
|
|
31
34
|
"@rollup/plugin-typescript": "11.1.6",
|
|
32
35
|
"@testing-library/jest-dom": "^6.9.1",
|
|
33
|
-
"@testing-library/react": "^16.3.
|
|
36
|
+
"@testing-library/react": "^16.3.1",
|
|
34
37
|
"@types/jest": "^29.5.14",
|
|
35
|
-
"@types/node": "^22.19.
|
|
38
|
+
"@types/node": "^22.19.6",
|
|
36
39
|
"@types/react": "19.1.17",
|
|
37
40
|
"@types/testing-library__jest-dom": "^5.14.9",
|
|
38
41
|
"@typescript-eslint/eslint-plugin": "8.29.1",
|
|
@@ -45,15 +48,15 @@
|
|
|
45
48
|
"jest-environment-jsdom": "29.7.0",
|
|
46
49
|
"prettier": "3.5.3",
|
|
47
50
|
"rollup": "4.40.0",
|
|
48
|
-
"rollup-plugin-dts": "^6.
|
|
51
|
+
"rollup-plugin-dts": "^6.3.0",
|
|
49
52
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
50
53
|
"rollup-plugin-typescript2": "0.36.0",
|
|
51
|
-
"ts-jest": "^29.4.
|
|
54
|
+
"ts-jest": "^29.4.6",
|
|
52
55
|
"tslib": "2.8.1",
|
|
53
56
|
"typescript": "5.8.3"
|
|
54
57
|
},
|
|
55
58
|
"dependencies": {
|
|
56
|
-
"@iblai/iblai-api": "4.
|
|
59
|
+
"@iblai/iblai-api": "4.166.0-ai",
|
|
57
60
|
"rollup-plugin-copy": "^3.5.0",
|
|
58
61
|
"zod": "3.24.2"
|
|
59
62
|
},
|