@iblai/web-utils 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-layer/src/core/index.d.ts +2 -1
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
- package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
- package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
- package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
- package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
- package/dist/data-layer/src/features/auth/types.d.ts +20 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
- package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
- package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
- package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
- package/dist/data-layer/src/features/core/constants.d.ts +40 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/data-layer/src/features/core/types.d.ts +27 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
- package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
- package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
- package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
- package/dist/data-layer/src/features/memory/types.d.ts +122 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
- package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
- package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
- package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
- package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
- package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/data-layer/src/features/platform/types.d.ts +48 -0
- package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
- package/dist/data-layer/src/features/projects/types.d.ts +79 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
- package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
- package/dist/data-layer/src/features/search/constants.d.ts +31 -0
- package/dist/data-layer/src/features/search/types.d.ts +89 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
- package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
- package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
- package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
- package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
- package/dist/data-layer/src/features/user/constants.d.ts +3 -1
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/utils.d.ts +8 -5
- package/dist/data-layer/src/index.d.ts +75 -47
- package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
- package/dist/data-layer/src/services/StorageService.d.ts +1 -1
- package/dist/index.d.ts +1021 -5
- package/dist/index.esm.js +3299 -453
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3305 -448
- package/dist/index.js.map +1 -1
- package/dist/package.json +34 -18
- package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
- package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
- package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
- 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 -0
- package/dist/web-utils/src/index.mobile.d.ts +10 -0
- package/dist/web-utils/src/index.web.d.ts +12 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
- package/dist/web-utils/src/types/index.d.ts +9 -0
- package/dist/web-utils/src/utils/constants.d.ts +4 -0
- package/dist/web-utils/src/utils/helpers.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +7 -0
- package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +37 -22
- package/dist/features/chat/slice.d.ts +0 -59
- package/dist/features/index.d.ts +0 -1
- package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
- package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
- package/dist/hooks/chat/use-chat.d.ts +0 -52
- package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
- package/dist/hooks/index.d.ts +0 -10
- package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
- package/dist/hooks/subscription/constants.d.ts +0 -4
- package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
- package/dist/hooks/subscription-v2/constants.d.ts +0 -5
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
- package/dist/hooks/use-day-js.d.ts +0 -7
- package/dist/providers/auth-provider.d.ts +0 -63
- package/dist/providers/index.d.ts +0 -3
- package/dist/providers/mentor-provider.d.ts +0 -40
- package/dist/providers/tenant-provider.d.ts +0 -60
- package/dist/types/chat.d.ts +0 -1
- package/dist/types/index.d.ts +0 -55
- package/dist/types/subscription.d.ts +0 -18
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/data/advanced-tab.d.ts +0 -62
- package/dist/utils/helpers.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const searchApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const searchApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
2
|
getPersonnalizedSearch: import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
3
3
|
username: string;
|
|
4
4
|
allowSkillSearch?: boolean;
|
|
@@ -33,7 +33,7 @@ export declare const searchApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
33
33
|
tenant?: string;
|
|
34
34
|
topics?: Array<string>;
|
|
35
35
|
updateFacet?: string;
|
|
36
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
36
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>;
|
|
37
37
|
getCatalogSearch: import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
38
38
|
allowSkillSearch?: boolean;
|
|
39
39
|
alphabetical?: boolean;
|
|
@@ -64,7 +64,7 @@ export declare const searchApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
64
64
|
tenant?: string;
|
|
65
65
|
topics?: Array<string>;
|
|
66
66
|
updateFacet?: string;
|
|
67
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
67
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>;
|
|
68
68
|
}, "searchApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
69
69
|
export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
70
70
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -118,7 +118,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
118
118
|
tenant?: string;
|
|
119
119
|
topics?: Array<string>;
|
|
120
120
|
updateFacet?: string;
|
|
121
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
121
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
122
122
|
currentData?: Record<string, any> | undefined;
|
|
123
123
|
isUninitialized: false;
|
|
124
124
|
isLoading: false;
|
|
@@ -167,7 +167,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
167
167
|
tenant?: string;
|
|
168
168
|
topics?: Array<string>;
|
|
169
169
|
updateFacet?: string;
|
|
170
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
170
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
171
171
|
currentData?: Record<string, any> | undefined;
|
|
172
172
|
isUninitialized: false;
|
|
173
173
|
isLoading: false;
|
|
@@ -212,7 +212,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
212
212
|
tenant?: string;
|
|
213
213
|
topics?: Array<string>;
|
|
214
214
|
updateFacet?: string;
|
|
215
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
215
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
216
216
|
currentData?: Record<string, any> | undefined;
|
|
217
217
|
isUninitialized: false;
|
|
218
218
|
isLoading: false;
|
|
@@ -255,7 +255,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
255
255
|
tenant?: string;
|
|
256
256
|
topics?: Array<string>;
|
|
257
257
|
updateFacet?: string;
|
|
258
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
258
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
259
259
|
currentData?: Record<string, any> | undefined;
|
|
260
260
|
isUninitialized: false;
|
|
261
261
|
isLoading: false;
|
|
@@ -355,7 +355,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
355
355
|
tenant?: string;
|
|
356
356
|
topics?: Array<string>;
|
|
357
357
|
updateFacet?: string;
|
|
358
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
358
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
359
359
|
currentData?: Record<string, any> | undefined;
|
|
360
360
|
isUninitialized: false;
|
|
361
361
|
isLoading: false;
|
|
@@ -404,7 +404,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
404
404
|
tenant?: string;
|
|
405
405
|
topics?: Array<string>;
|
|
406
406
|
updateFacet?: string;
|
|
407
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
407
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
408
408
|
currentData?: Record<string, any> | undefined;
|
|
409
409
|
isUninitialized: false;
|
|
410
410
|
isLoading: false;
|
|
@@ -449,7 +449,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
449
449
|
tenant?: string;
|
|
450
450
|
topics?: Array<string>;
|
|
451
451
|
updateFacet?: string;
|
|
452
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
452
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
453
453
|
currentData?: Record<string, any> | undefined;
|
|
454
454
|
isUninitialized: false;
|
|
455
455
|
isLoading: false;
|
|
@@ -492,7 +492,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
492
492
|
tenant?: string;
|
|
493
493
|
topics?: Array<string>;
|
|
494
494
|
updateFacet?: string;
|
|
495
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
495
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
496
496
|
currentData?: Record<string, any> | undefined;
|
|
497
497
|
isUninitialized: false;
|
|
498
498
|
isLoading: false;
|
|
@@ -537,7 +537,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
537
537
|
tenant?: string;
|
|
538
538
|
topics?: Array<string>;
|
|
539
539
|
updateFacet?: string;
|
|
540
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
540
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>>;
|
|
541
541
|
}, useLazyGetPersonnalizedSearchQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
542
542
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
543
543
|
originalArgs?: undefined | undefined;
|
|
@@ -590,7 +590,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
590
590
|
tenant?: string;
|
|
591
591
|
topics?: Array<string>;
|
|
592
592
|
updateFacet?: string;
|
|
593
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
593
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
594
594
|
currentData?: Record<string, any> | undefined;
|
|
595
595
|
isUninitialized: false;
|
|
596
596
|
isLoading: false;
|
|
@@ -639,7 +639,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
639
639
|
tenant?: string;
|
|
640
640
|
topics?: Array<string>;
|
|
641
641
|
updateFacet?: string;
|
|
642
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
642
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
643
643
|
currentData?: Record<string, any> | undefined;
|
|
644
644
|
isUninitialized: false;
|
|
645
645
|
isLoading: false;
|
|
@@ -684,7 +684,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
684
684
|
tenant?: string;
|
|
685
685
|
topics?: Array<string>;
|
|
686
686
|
updateFacet?: string;
|
|
687
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
687
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
688
688
|
currentData?: Record<string, any> | undefined;
|
|
689
689
|
isUninitialized: false;
|
|
690
690
|
isLoading: false;
|
|
@@ -727,7 +727,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
727
727
|
tenant?: string;
|
|
728
728
|
topics?: Array<string>;
|
|
729
729
|
updateFacet?: string;
|
|
730
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
730
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
731
731
|
currentData?: Record<string, any> | undefined;
|
|
732
732
|
isUninitialized: false;
|
|
733
733
|
isLoading: false;
|
|
@@ -790,7 +790,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
790
790
|
tenant?: string;
|
|
791
791
|
topics?: Array<string>;
|
|
792
792
|
updateFacet?: string;
|
|
793
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
793
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
794
794
|
currentData?: Record<string, any> | undefined;
|
|
795
795
|
isUninitialized: false;
|
|
796
796
|
isLoading: false;
|
|
@@ -839,7 +839,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
839
839
|
tenant?: string;
|
|
840
840
|
topics?: Array<string>;
|
|
841
841
|
updateFacet?: string;
|
|
842
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
842
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
843
843
|
currentData?: Record<string, any> | undefined;
|
|
844
844
|
isUninitialized: false;
|
|
845
845
|
isLoading: false;
|
|
@@ -884,7 +884,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
884
884
|
tenant?: string;
|
|
885
885
|
topics?: Array<string>;
|
|
886
886
|
updateFacet?: string;
|
|
887
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
887
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
888
888
|
currentData?: Record<string, any> | undefined;
|
|
889
889
|
isUninitialized: false;
|
|
890
890
|
isLoading: false;
|
|
@@ -927,7 +927,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
927
927
|
tenant?: string;
|
|
928
928
|
topics?: Array<string>;
|
|
929
929
|
updateFacet?: string;
|
|
930
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
930
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>> & {
|
|
931
931
|
currentData?: Record<string, any> | undefined;
|
|
932
932
|
isUninitialized: false;
|
|
933
933
|
isLoading: false;
|
|
@@ -1005,7 +1005,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1005
1005
|
tenant?: string;
|
|
1006
1006
|
topics?: Array<string>;
|
|
1007
1007
|
updateFacet?: string;
|
|
1008
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1008
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, Record<string, any>, "searchApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1009
1009
|
reset: () => void;
|
|
1010
1010
|
}, {
|
|
1011
1011
|
lastArg: [{
|
|
@@ -1053,7 +1053,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1053
1053
|
startedTimeStamp?: undefined | undefined;
|
|
1054
1054
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1055
1055
|
} & {
|
|
1056
|
-
currentData?: import("
|
|
1056
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1057
1057
|
isUninitialized: false;
|
|
1058
1058
|
isLoading: false;
|
|
1059
1059
|
isFetching: false;
|
|
@@ -1091,8 +1091,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1091
1091
|
tenant?: string;
|
|
1092
1092
|
topics?: Array<string>;
|
|
1093
1093
|
updateFacet?: string;
|
|
1094
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1095
|
-
currentData?: import("
|
|
1094
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1095
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1096
1096
|
isUninitialized: false;
|
|
1097
1097
|
isLoading: false;
|
|
1098
1098
|
isFetching: false;
|
|
@@ -1136,8 +1136,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1136
1136
|
tenant?: string;
|
|
1137
1137
|
topics?: Array<string>;
|
|
1138
1138
|
updateFacet?: string;
|
|
1139
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1140
|
-
currentData?: import("
|
|
1139
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1140
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1141
1141
|
isUninitialized: false;
|
|
1142
1142
|
isLoading: false;
|
|
1143
1143
|
isFetching: false;
|
|
@@ -1177,8 +1177,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1177
1177
|
tenant?: string;
|
|
1178
1178
|
topics?: Array<string>;
|
|
1179
1179
|
updateFacet?: string;
|
|
1180
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1181
|
-
currentData?: import("
|
|
1180
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1181
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1182
1182
|
isUninitialized: false;
|
|
1183
1183
|
isLoading: false;
|
|
1184
1184
|
isFetching: false;
|
|
@@ -1216,8 +1216,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1216
1216
|
tenant?: string;
|
|
1217
1217
|
topics?: Array<string>;
|
|
1218
1218
|
updateFacet?: string;
|
|
1219
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1220
|
-
currentData?: import("
|
|
1219
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1220
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1221
1221
|
isUninitialized: false;
|
|
1222
1222
|
isLoading: false;
|
|
1223
1223
|
isFetching: false;
|
|
@@ -1270,7 +1270,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1270
1270
|
startedTimeStamp?: undefined | undefined;
|
|
1271
1271
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1272
1272
|
} & {
|
|
1273
|
-
currentData?: import("
|
|
1273
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1274
1274
|
isUninitialized: false;
|
|
1275
1275
|
isLoading: false;
|
|
1276
1276
|
isFetching: false;
|
|
@@ -1308,8 +1308,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1308
1308
|
tenant?: string;
|
|
1309
1309
|
topics?: Array<string>;
|
|
1310
1310
|
updateFacet?: string;
|
|
1311
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1312
|
-
currentData?: import("
|
|
1311
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1312
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1313
1313
|
isUninitialized: false;
|
|
1314
1314
|
isLoading: false;
|
|
1315
1315
|
isFetching: false;
|
|
@@ -1353,8 +1353,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1353
1353
|
tenant?: string;
|
|
1354
1354
|
topics?: Array<string>;
|
|
1355
1355
|
updateFacet?: string;
|
|
1356
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1357
|
-
currentData?: import("
|
|
1356
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1357
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1358
1358
|
isUninitialized: false;
|
|
1359
1359
|
isLoading: false;
|
|
1360
1360
|
isFetching: false;
|
|
@@ -1394,8 +1394,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1394
1394
|
tenant?: string;
|
|
1395
1395
|
topics?: Array<string>;
|
|
1396
1396
|
updateFacet?: string;
|
|
1397
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1398
|
-
currentData?: import("
|
|
1397
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1398
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1399
1399
|
isUninitialized: false;
|
|
1400
1400
|
isLoading: false;
|
|
1401
1401
|
isFetching: false;
|
|
@@ -1433,8 +1433,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1433
1433
|
tenant?: string;
|
|
1434
1434
|
topics?: Array<string>;
|
|
1435
1435
|
updateFacet?: string;
|
|
1436
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1437
|
-
currentData?: import("
|
|
1436
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1437
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1438
1438
|
isUninitialized: false;
|
|
1439
1439
|
isLoading: false;
|
|
1440
1440
|
isFetching: false;
|
|
@@ -1474,7 +1474,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1474
1474
|
tenant?: string;
|
|
1475
1475
|
topics?: Array<string>;
|
|
1476
1476
|
updateFacet?: string;
|
|
1477
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1477
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>>;
|
|
1478
1478
|
}, useLazyGetCatalogSearchQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1479
1479
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1480
1480
|
originalArgs?: undefined | undefined;
|
|
@@ -1485,7 +1485,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1485
1485
|
startedTimeStamp?: undefined | undefined;
|
|
1486
1486
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1487
1487
|
} & {
|
|
1488
|
-
currentData?: import("
|
|
1488
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1489
1489
|
isUninitialized: false;
|
|
1490
1490
|
isLoading: false;
|
|
1491
1491
|
isFetching: false;
|
|
@@ -1523,8 +1523,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1523
1523
|
tenant?: string;
|
|
1524
1524
|
topics?: Array<string>;
|
|
1525
1525
|
updateFacet?: string;
|
|
1526
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1527
|
-
currentData?: import("
|
|
1526
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1527
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1528
1528
|
isUninitialized: false;
|
|
1529
1529
|
isLoading: false;
|
|
1530
1530
|
isFetching: false;
|
|
@@ -1568,8 +1568,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1568
1568
|
tenant?: string;
|
|
1569
1569
|
topics?: Array<string>;
|
|
1570
1570
|
updateFacet?: string;
|
|
1571
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1572
|
-
currentData?: import("
|
|
1571
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1572
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1573
1573
|
isUninitialized: false;
|
|
1574
1574
|
isLoading: false;
|
|
1575
1575
|
isFetching: false;
|
|
@@ -1609,8 +1609,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1609
1609
|
tenant?: string;
|
|
1610
1610
|
topics?: Array<string>;
|
|
1611
1611
|
updateFacet?: string;
|
|
1612
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1613
|
-
currentData?: import("
|
|
1612
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1613
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1614
1614
|
isUninitialized: false;
|
|
1615
1615
|
isLoading: false;
|
|
1616
1616
|
isFetching: false;
|
|
@@ -1648,8 +1648,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1648
1648
|
tenant?: string;
|
|
1649
1649
|
topics?: Array<string>;
|
|
1650
1650
|
updateFacet?: string;
|
|
1651
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1652
|
-
currentData?: import("
|
|
1651
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1652
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1653
1653
|
isUninitialized: false;
|
|
1654
1654
|
isLoading: false;
|
|
1655
1655
|
isFetching: false;
|
|
@@ -1669,7 +1669,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1669
1669
|
startedTimeStamp?: undefined | undefined;
|
|
1670
1670
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1671
1671
|
} & {
|
|
1672
|
-
currentData?: import("
|
|
1672
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1673
1673
|
isUninitialized: false;
|
|
1674
1674
|
isLoading: false;
|
|
1675
1675
|
isFetching: false;
|
|
@@ -1707,8 +1707,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1707
1707
|
tenant?: string;
|
|
1708
1708
|
topics?: Array<string>;
|
|
1709
1709
|
updateFacet?: string;
|
|
1710
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1711
|
-
currentData?: import("
|
|
1710
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1711
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1712
1712
|
isUninitialized: false;
|
|
1713
1713
|
isLoading: false;
|
|
1714
1714
|
isFetching: false;
|
|
@@ -1752,8 +1752,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1752
1752
|
tenant?: string;
|
|
1753
1753
|
topics?: Array<string>;
|
|
1754
1754
|
updateFacet?: string;
|
|
1755
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1756
|
-
currentData?: import("
|
|
1755
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1756
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1757
1757
|
isUninitialized: false;
|
|
1758
1758
|
isLoading: false;
|
|
1759
1759
|
isFetching: false;
|
|
@@ -1793,8 +1793,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1793
1793
|
tenant?: string;
|
|
1794
1794
|
topics?: Array<string>;
|
|
1795
1795
|
updateFacet?: string;
|
|
1796
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1797
|
-
currentData?: import("
|
|
1796
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1797
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1798
1798
|
isUninitialized: false;
|
|
1799
1799
|
isLoading: false;
|
|
1800
1800
|
isFetching: false;
|
|
@@ -1832,8 +1832,8 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1832
1832
|
tenant?: string;
|
|
1833
1833
|
topics?: Array<string>;
|
|
1834
1834
|
updateFacet?: string;
|
|
1835
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1836
|
-
currentData?: import("
|
|
1835
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>> & {
|
|
1836
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse | undefined;
|
|
1837
1837
|
isUninitialized: false;
|
|
1838
1838
|
isLoading: false;
|
|
1839
1839
|
isFetching: false;
|
|
@@ -1902,7 +1902,7 @@ export declare const useGetPersonnalizedSearchQuery: <R extends Record<string, a
|
|
|
1902
1902
|
tenant?: string;
|
|
1903
1903
|
topics?: Array<string>;
|
|
1904
1904
|
updateFacet?: string;
|
|
1905
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1905
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").GlobalCatalogSearchResponse, "searchApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1906
1906
|
reset: () => void;
|
|
1907
1907
|
}, {
|
|
1908
1908
|
lastArg: [{
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SERVICES } from '@data-layer/constants';
|
|
2
|
+
export declare const CUSTOM_AI_SEARCH_REDUCER_PATH = "customAiSearchApiSlicePath";
|
|
3
|
+
export declare const CUSTOM_AI_SEARCH_ENDPOINTS: {
|
|
4
|
+
GET_RECOMMENDATIONS_AI_SEARCH: {
|
|
5
|
+
service: SERVICES;
|
|
6
|
+
path: () => string;
|
|
7
|
+
};
|
|
8
|
+
GET_RECOMMENDED_PROMPTS_LIST: {
|
|
9
|
+
service: SERVICES;
|
|
10
|
+
path: () => string;
|
|
11
|
+
};
|
|
12
|
+
CREATE_RECOMMENDED_PROMPT: {
|
|
13
|
+
service: SERVICES;
|
|
14
|
+
path: () => string;
|
|
15
|
+
};
|
|
16
|
+
UPDATE_RECOMMENDED_PROMPT: {
|
|
17
|
+
service: SERVICES;
|
|
18
|
+
path: () => string;
|
|
19
|
+
};
|
|
20
|
+
DELETE_RECOMMENDED_PROMPT: {
|
|
21
|
+
service: SERVICES;
|
|
22
|
+
path: () => string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export declare const CUSTOM_AI_SEARCH_QUERY_KEYS: {
|
|
26
|
+
GET_RECOMMENDATIONS_AI_SEARCH: () => string[];
|
|
27
|
+
GET_PROMPTS_LIST: () => string[];
|
|
28
|
+
CREATE_PROMPT: () => string[];
|
|
29
|
+
UPDATE_PROMPT: () => string[];
|
|
30
|
+
DELETE_PROMPT: () => string[];
|
|
31
|
+
};
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
export interface GetRecommendationsAiSearchArgs {
|
|
2
|
+
params: {
|
|
3
|
+
platform_key: string;
|
|
4
|
+
platform_org?: string;
|
|
5
|
+
recommendation_type: recommendationPromptTypeEnum;
|
|
6
|
+
use_llm_ranking?: boolean;
|
|
7
|
+
ranking_strategy?: 'relevance' | 'difficulty' | 'personalized' | 'custom';
|
|
8
|
+
include_main_catalog?: boolean;
|
|
9
|
+
limit?: number;
|
|
10
|
+
search_terms?: string;
|
|
11
|
+
domains?: string[];
|
|
12
|
+
difficulty_levels?: string[];
|
|
13
|
+
spa_url?: string;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export declare enum recommendationPromptTypeEnum {
|
|
17
|
+
mentors = "mentors",
|
|
18
|
+
catalog = "catalog"
|
|
19
|
+
}
|
|
20
|
+
export interface RecommendationItem {
|
|
21
|
+
course_id: string;
|
|
22
|
+
course_title: string;
|
|
23
|
+
reason: string;
|
|
24
|
+
domain: string;
|
|
25
|
+
difficulty_level: string;
|
|
26
|
+
estimated_hours: number;
|
|
27
|
+
confidence_score: number;
|
|
28
|
+
platform_key: string;
|
|
29
|
+
description: string;
|
|
30
|
+
}
|
|
31
|
+
export interface RecommendationSystemUserContext {
|
|
32
|
+
completed_courses: string[];
|
|
33
|
+
strong_domains: string[];
|
|
34
|
+
average_completion_rate: number;
|
|
35
|
+
}
|
|
36
|
+
export interface GetRecommendationsAiSearchResponse {
|
|
37
|
+
success: boolean;
|
|
38
|
+
recommendations: RecommendationItem[];
|
|
39
|
+
user_context: RecommendationSystemUserContext;
|
|
40
|
+
recommendation_id: string;
|
|
41
|
+
generated_at: string;
|
|
42
|
+
platform_key: string;
|
|
43
|
+
method_used: string;
|
|
44
|
+
search_query_used: string;
|
|
45
|
+
candidates_retrieved: number;
|
|
46
|
+
processing_time_seconds: number;
|
|
47
|
+
}
|
|
48
|
+
export interface RecommendedPromptDetailResponse {
|
|
49
|
+
id: number | null;
|
|
50
|
+
platform_key: string;
|
|
51
|
+
prompt_text: string;
|
|
52
|
+
recommendation_type: string;
|
|
53
|
+
spa_url?: string;
|
|
54
|
+
active: boolean;
|
|
55
|
+
created_at: string;
|
|
56
|
+
updated_at: string;
|
|
57
|
+
created_by?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface GetRecommendedPromptsListArgs {
|
|
60
|
+
params: {
|
|
61
|
+
platform_key: string;
|
|
62
|
+
recommendation_type?: recommendationPromptTypeEnum;
|
|
63
|
+
active_only?: boolean;
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
export interface CreateRecommendedPromptArgs {
|
|
67
|
+
requestBody: {
|
|
68
|
+
platform_key: string;
|
|
69
|
+
recommendation_type: recommendationPromptTypeEnum;
|
|
70
|
+
spa_url?: string;
|
|
71
|
+
prompt_text: string;
|
|
72
|
+
active: boolean;
|
|
73
|
+
ranking_strategy: 'relevance' | 'difficulty' | 'personalized' | 'custom';
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
export interface UpdateRecommendedPromptArgs {
|
|
77
|
+
requestBody: {
|
|
78
|
+
prompt_text: string;
|
|
79
|
+
active: boolean;
|
|
80
|
+
};
|
|
81
|
+
prompt_id: number;
|
|
82
|
+
platform_key: string;
|
|
83
|
+
}
|
|
84
|
+
export interface DeleteRecommendedPromptArgs {
|
|
85
|
+
params: {
|
|
86
|
+
prompt_id: number;
|
|
87
|
+
platform_key: string;
|
|
88
|
+
};
|
|
89
|
+
}
|