@iblai/web-utils 0.2.0 → 0.2.1
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 +31 -17
- 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,18 +1,18 @@
|
|
|
1
|
-
export declare const sessionApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const sessionApiSlice: 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
|
createSessionId: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3
3
|
org: string;
|
|
4
|
-
requestBody: import("
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionRequest;
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse, "sessionApiSlice", any>;
|
|
6
6
|
getSessionId: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
7
|
org: string;
|
|
8
8
|
sessionId: string;
|
|
9
9
|
share?: boolean;
|
|
10
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
10
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>;
|
|
11
11
|
editSession: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
12
12
|
org: string;
|
|
13
13
|
sessionId: string;
|
|
14
|
-
requestBody?: import("
|
|
15
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
14
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
15
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse, "sessionApiSlice", any>;
|
|
16
16
|
}, "sessionApiSlice", "sessionId", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
17
17
|
export declare const useCreateSessionIdMutation: <R extends Record<string, any> = ({
|
|
18
18
|
requestId?: undefined;
|
|
@@ -32,14 +32,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
32
32
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
33
33
|
} & Omit<{
|
|
34
34
|
requestId: string;
|
|
35
|
-
data?: import("
|
|
35
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
36
36
|
error?: unknown;
|
|
37
37
|
endpointName: string;
|
|
38
38
|
startedTimeStamp: number;
|
|
39
39
|
fulfilledTimeStamp?: number;
|
|
40
40
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
41
41
|
requestId: string;
|
|
42
|
-
data?: import("
|
|
42
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
43
43
|
error?: unknown;
|
|
44
44
|
endpointName: string;
|
|
45
45
|
startedTimeStamp: number;
|
|
@@ -56,7 +56,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
56
56
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
57
57
|
} & {
|
|
58
58
|
requestId: string;
|
|
59
|
-
data?: import("
|
|
59
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
60
60
|
error?: unknown;
|
|
61
61
|
endpointName: string;
|
|
62
62
|
startedTimeStamp: number;
|
|
@@ -73,14 +73,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
73
73
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
74
74
|
} & Omit<{
|
|
75
75
|
requestId: string;
|
|
76
|
-
data?: import("
|
|
76
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
77
77
|
error?: unknown;
|
|
78
78
|
endpointName: string;
|
|
79
79
|
startedTimeStamp: number;
|
|
80
80
|
fulfilledTimeStamp?: number;
|
|
81
81
|
}, "error"> & Required<Pick<{
|
|
82
82
|
requestId: string;
|
|
83
|
-
data?: import("
|
|
83
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
84
84
|
error?: unknown;
|
|
85
85
|
endpointName: string;
|
|
86
86
|
startedTimeStamp: number;
|
|
@@ -110,14 +110,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
110
110
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
111
111
|
} & Omit<{
|
|
112
112
|
requestId: string;
|
|
113
|
-
data?: import("
|
|
113
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
114
114
|
error?: unknown;
|
|
115
115
|
endpointName: string;
|
|
116
116
|
startedTimeStamp: number;
|
|
117
117
|
fulfilledTimeStamp?: number;
|
|
118
118
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
119
119
|
requestId: string;
|
|
120
|
-
data?: import("
|
|
120
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
121
121
|
error?: unknown;
|
|
122
122
|
endpointName: string;
|
|
123
123
|
startedTimeStamp: number;
|
|
@@ -134,7 +134,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
134
134
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
135
135
|
} & {
|
|
136
136
|
requestId: string;
|
|
137
|
-
data?: import("
|
|
137
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
138
138
|
error?: unknown;
|
|
139
139
|
endpointName: string;
|
|
140
140
|
startedTimeStamp: number;
|
|
@@ -151,14 +151,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
151
151
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
152
152
|
} & Omit<{
|
|
153
153
|
requestId: string;
|
|
154
|
-
data?: import("
|
|
154
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
155
155
|
error?: unknown;
|
|
156
156
|
endpointName: string;
|
|
157
157
|
startedTimeStamp: number;
|
|
158
158
|
fulfilledTimeStamp?: number;
|
|
159
159
|
}, "error"> & Required<Pick<{
|
|
160
160
|
requestId: string;
|
|
161
|
-
data?: import("
|
|
161
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse | undefined;
|
|
162
162
|
error?: unknown;
|
|
163
163
|
endpointName: string;
|
|
164
164
|
startedTimeStamp: number;
|
|
@@ -173,14 +173,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
173
173
|
fixedCacheKey?: string;
|
|
174
174
|
} | undefined) => readonly [(arg: {
|
|
175
175
|
org: string;
|
|
176
|
-
requestBody: import("
|
|
176
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionRequest;
|
|
177
177
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
178
178
|
org: string;
|
|
179
|
-
requestBody: import("
|
|
180
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
179
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionRequest;
|
|
180
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").ChatSessionResponse, "sessionApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
181
181
|
originalArgs?: {
|
|
182
182
|
org: string;
|
|
183
|
-
requestBody: import("
|
|
183
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").ChatSessionRequest;
|
|
184
184
|
} | undefined;
|
|
185
185
|
reset: () => void;
|
|
186
186
|
}], useGetSessionIdQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -193,7 +193,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
193
193
|
startedTimeStamp?: undefined | undefined;
|
|
194
194
|
fulfilledTimeStamp?: undefined | undefined;
|
|
195
195
|
} & {
|
|
196
|
-
currentData?: import("
|
|
196
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
197
197
|
isUninitialized: false;
|
|
198
198
|
isLoading: false;
|
|
199
199
|
isFetching: false;
|
|
@@ -205,8 +205,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
205
205
|
org: string;
|
|
206
206
|
sessionId: string;
|
|
207
207
|
share?: boolean;
|
|
208
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
209
|
-
currentData?: import("
|
|
208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
209
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
210
210
|
isUninitialized: false;
|
|
211
211
|
isLoading: false;
|
|
212
212
|
isFetching: false;
|
|
@@ -224,8 +224,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
224
224
|
org: string;
|
|
225
225
|
sessionId: string;
|
|
226
226
|
share?: boolean;
|
|
227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
228
|
-
currentData?: import("
|
|
227
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
228
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
229
229
|
isUninitialized: false;
|
|
230
230
|
isLoading: false;
|
|
231
231
|
isFetching: false;
|
|
@@ -239,8 +239,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
239
239
|
org: string;
|
|
240
240
|
sessionId: string;
|
|
241
241
|
share?: boolean;
|
|
242
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
243
|
-
currentData?: import("
|
|
242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
243
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
244
244
|
isUninitialized: false;
|
|
245
245
|
isLoading: false;
|
|
246
246
|
isFetching: false;
|
|
@@ -252,8 +252,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
252
252
|
org: string;
|
|
253
253
|
sessionId: string;
|
|
254
254
|
share?: boolean;
|
|
255
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
256
|
-
currentData?: import("
|
|
255
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
256
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
257
257
|
isUninitialized: false;
|
|
258
258
|
isLoading: false;
|
|
259
259
|
isFetching: false;
|
|
@@ -280,7 +280,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
280
280
|
startedTimeStamp?: undefined | undefined;
|
|
281
281
|
fulfilledTimeStamp?: undefined | undefined;
|
|
282
282
|
} & {
|
|
283
|
-
currentData?: import("
|
|
283
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
284
284
|
isUninitialized: false;
|
|
285
285
|
isLoading: false;
|
|
286
286
|
isFetching: false;
|
|
@@ -292,8 +292,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
292
292
|
org: string;
|
|
293
293
|
sessionId: string;
|
|
294
294
|
share?: boolean;
|
|
295
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
296
|
-
currentData?: import("
|
|
295
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
296
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
297
297
|
isUninitialized: false;
|
|
298
298
|
isLoading: false;
|
|
299
299
|
isFetching: false;
|
|
@@ -311,8 +311,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
311
311
|
org: string;
|
|
312
312
|
sessionId: string;
|
|
313
313
|
share?: boolean;
|
|
314
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
315
|
-
currentData?: import("
|
|
314
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
315
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
316
316
|
isUninitialized: false;
|
|
317
317
|
isLoading: false;
|
|
318
318
|
isFetching: false;
|
|
@@ -326,8 +326,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
326
326
|
org: string;
|
|
327
327
|
sessionId: string;
|
|
328
328
|
share?: boolean;
|
|
329
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
330
|
-
currentData?: import("
|
|
329
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
330
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
331
331
|
isUninitialized: false;
|
|
332
332
|
isLoading: false;
|
|
333
333
|
isFetching: false;
|
|
@@ -339,8 +339,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
339
339
|
org: string;
|
|
340
340
|
sessionId: string;
|
|
341
341
|
share?: boolean;
|
|
342
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
343
|
-
currentData?: import("
|
|
342
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
343
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
344
344
|
isUninitialized: false;
|
|
345
345
|
isLoading: false;
|
|
346
346
|
isFetching: false;
|
|
@@ -354,7 +354,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
354
354
|
org: string;
|
|
355
355
|
sessionId: string;
|
|
356
356
|
share?: boolean;
|
|
357
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
357
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>>;
|
|
358
358
|
}, useLazyGetSessionIdQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
359
359
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
360
360
|
originalArgs?: undefined | undefined;
|
|
@@ -365,7 +365,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
365
365
|
startedTimeStamp?: undefined | undefined;
|
|
366
366
|
fulfilledTimeStamp?: undefined | undefined;
|
|
367
367
|
} & {
|
|
368
|
-
currentData?: import("
|
|
368
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
369
369
|
isUninitialized: false;
|
|
370
370
|
isLoading: false;
|
|
371
371
|
isFetching: false;
|
|
@@ -377,8 +377,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
377
377
|
org: string;
|
|
378
378
|
sessionId: string;
|
|
379
379
|
share?: boolean;
|
|
380
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
381
|
-
currentData?: import("
|
|
380
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
381
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
382
382
|
isUninitialized: false;
|
|
383
383
|
isLoading: false;
|
|
384
384
|
isFetching: false;
|
|
@@ -396,8 +396,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
396
396
|
org: string;
|
|
397
397
|
sessionId: string;
|
|
398
398
|
share?: boolean;
|
|
399
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
400
|
-
currentData?: import("
|
|
399
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
400
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
401
401
|
isUninitialized: false;
|
|
402
402
|
isLoading: false;
|
|
403
403
|
isFetching: false;
|
|
@@ -411,8 +411,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
411
411
|
org: string;
|
|
412
412
|
sessionId: string;
|
|
413
413
|
share?: boolean;
|
|
414
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
415
|
-
currentData?: import("
|
|
414
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
415
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
416
416
|
isUninitialized: false;
|
|
417
417
|
isLoading: false;
|
|
418
418
|
isFetching: false;
|
|
@@ -424,8 +424,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
424
424
|
org: string;
|
|
425
425
|
sessionId: string;
|
|
426
426
|
share?: boolean;
|
|
427
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
428
|
-
currentData?: import("
|
|
427
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
428
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
429
429
|
isUninitialized: false;
|
|
430
430
|
isLoading: false;
|
|
431
431
|
isFetching: false;
|
|
@@ -445,7 +445,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
445
445
|
startedTimeStamp?: undefined | undefined;
|
|
446
446
|
fulfilledTimeStamp?: undefined | undefined;
|
|
447
447
|
} & {
|
|
448
|
-
currentData?: import("
|
|
448
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
449
449
|
isUninitialized: false;
|
|
450
450
|
isLoading: false;
|
|
451
451
|
isFetching: false;
|
|
@@ -457,8 +457,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
457
457
|
org: string;
|
|
458
458
|
sessionId: string;
|
|
459
459
|
share?: boolean;
|
|
460
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
461
|
-
currentData?: import("
|
|
460
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
461
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
462
462
|
isUninitialized: false;
|
|
463
463
|
isLoading: false;
|
|
464
464
|
isFetching: false;
|
|
@@ -476,8 +476,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
476
476
|
org: string;
|
|
477
477
|
sessionId: string;
|
|
478
478
|
share?: boolean;
|
|
479
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
480
|
-
currentData?: import("
|
|
479
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
480
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
481
481
|
isUninitialized: false;
|
|
482
482
|
isLoading: false;
|
|
483
483
|
isFetching: false;
|
|
@@ -491,8 +491,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
491
491
|
org: string;
|
|
492
492
|
sessionId: string;
|
|
493
493
|
share?: boolean;
|
|
494
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
495
|
-
currentData?: import("
|
|
494
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
495
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
496
496
|
isUninitialized: false;
|
|
497
497
|
isLoading: false;
|
|
498
498
|
isFetching: false;
|
|
@@ -504,8 +504,8 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
504
504
|
org: string;
|
|
505
505
|
sessionId: string;
|
|
506
506
|
share?: boolean;
|
|
507
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
508
|
-
currentData?: import("
|
|
507
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>> & {
|
|
508
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
509
509
|
isUninitialized: false;
|
|
510
510
|
isLoading: false;
|
|
511
511
|
isFetching: false;
|
|
@@ -522,7 +522,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
522
522
|
org: string;
|
|
523
523
|
sessionId: string;
|
|
524
524
|
share?: boolean;
|
|
525
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
525
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "sessionApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
526
526
|
reset: () => void;
|
|
527
527
|
}, {
|
|
528
528
|
lastArg: {
|
|
@@ -548,14 +548,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
548
548
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
549
549
|
} & Omit<{
|
|
550
550
|
requestId: string;
|
|
551
|
-
data?: import("
|
|
551
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
552
552
|
error?: unknown;
|
|
553
553
|
endpointName: string;
|
|
554
554
|
startedTimeStamp: number;
|
|
555
555
|
fulfilledTimeStamp?: number;
|
|
556
556
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
557
557
|
requestId: string;
|
|
558
|
-
data?: import("
|
|
558
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
559
559
|
error?: unknown;
|
|
560
560
|
endpointName: string;
|
|
561
561
|
startedTimeStamp: number;
|
|
@@ -572,7 +572,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
572
572
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
573
573
|
} & {
|
|
574
574
|
requestId: string;
|
|
575
|
-
data?: import("
|
|
575
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
576
576
|
error?: unknown;
|
|
577
577
|
endpointName: string;
|
|
578
578
|
startedTimeStamp: number;
|
|
@@ -589,14 +589,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
589
589
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
590
590
|
} & Omit<{
|
|
591
591
|
requestId: string;
|
|
592
|
-
data?: import("
|
|
592
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
593
593
|
error?: unknown;
|
|
594
594
|
endpointName: string;
|
|
595
595
|
startedTimeStamp: number;
|
|
596
596
|
fulfilledTimeStamp?: number;
|
|
597
597
|
}, "error"> & Required<Pick<{
|
|
598
598
|
requestId: string;
|
|
599
|
-
data?: import("
|
|
599
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
600
600
|
error?: unknown;
|
|
601
601
|
endpointName: string;
|
|
602
602
|
startedTimeStamp: number;
|
|
@@ -626,14 +626,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
626
626
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
627
627
|
} & Omit<{
|
|
628
628
|
requestId: string;
|
|
629
|
-
data?: import("
|
|
629
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
630
630
|
error?: unknown;
|
|
631
631
|
endpointName: string;
|
|
632
632
|
startedTimeStamp: number;
|
|
633
633
|
fulfilledTimeStamp?: number;
|
|
634
634
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
635
635
|
requestId: string;
|
|
636
|
-
data?: import("
|
|
636
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
637
637
|
error?: unknown;
|
|
638
638
|
endpointName: string;
|
|
639
639
|
startedTimeStamp: number;
|
|
@@ -650,7 +650,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
650
650
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
651
651
|
} & {
|
|
652
652
|
requestId: string;
|
|
653
|
-
data?: import("
|
|
653
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
654
654
|
error?: unknown;
|
|
655
655
|
endpointName: string;
|
|
656
656
|
startedTimeStamp: number;
|
|
@@ -667,14 +667,14 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
667
667
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
668
668
|
} & Omit<{
|
|
669
669
|
requestId: string;
|
|
670
|
-
data?: import("
|
|
670
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
671
671
|
error?: unknown;
|
|
672
672
|
endpointName: string;
|
|
673
673
|
startedTimeStamp: number;
|
|
674
674
|
fulfilledTimeStamp?: number;
|
|
675
675
|
}, "error"> & Required<Pick<{
|
|
676
676
|
requestId: string;
|
|
677
|
-
data?: import("
|
|
677
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
678
678
|
error?: unknown;
|
|
679
679
|
endpointName: string;
|
|
680
680
|
startedTimeStamp: number;
|
|
@@ -690,16 +690,16 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
690
690
|
} | undefined) => readonly [(arg: {
|
|
691
691
|
org: string;
|
|
692
692
|
sessionId: string;
|
|
693
|
-
requestBody?: import("
|
|
693
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
694
694
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
695
695
|
org: string;
|
|
696
696
|
sessionId: string;
|
|
697
|
-
requestBody?: import("
|
|
698
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
697
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
698
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse, "sessionApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
699
699
|
originalArgs?: {
|
|
700
700
|
org: string;
|
|
701
701
|
sessionId: string;
|
|
702
|
-
requestBody?: import("
|
|
702
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
703
703
|
} | undefined;
|
|
704
704
|
reset: () => void;
|
|
705
705
|
}];
|