@iblai/data-layer 0.2.0 → 0.3.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/index.d.ts +41476 -15632
- package/dist/index.esm.js +6764 -1863
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6947 -1859
- package/dist/index.js.map +1 -1
- package/dist/package.json +19 -17
- package/dist/src/__tests__/constants.test.d.ts +1 -0
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/src/features/analytics/constants.d.ts +56 -1
- package/dist/src/features/analytics/types.d.ts +327 -1
- package/dist/src/features/api-keys/api-slice.d.ts +25 -36
- package/dist/src/features/apps/api-slice.d.ts +25 -36
- package/dist/src/features/auth/api-slice.d.ts +504 -2
- package/dist/src/features/auth/constants.d.ts +13 -1
- package/dist/src/features/auth/types.d.ts +20 -0
- package/dist/src/features/billing/api-slice.d.ts +5 -5
- package/dist/src/features/career/api-slice.d.ts +2345 -180
- package/dist/src/features/catalog/api-slice.d.ts +2260 -244
- package/dist/src/features/chat/api-slice.d.ts +68 -68
- package/dist/src/features/chat-files/api-slice.d.ts +185 -0
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +60 -60
- package/dist/src/features/core/api-slice.d.ts +3793 -26
- package/dist/src/features/core/constants.d.ts +43 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +766 -105
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +22 -22
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +20 -20
- package/dist/src/features/memory/api-slice.d.ts +1437 -530
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +1738 -240
- package/dist/src/features/mentor/constants.d.ts +8 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/src/features/mentor/types.d.ts +39 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
- package/dist/src/features/notifications/api-slice.d.ts +696 -42
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +58 -58
- package/dist/src/features/platform/api-slice.d.ts +321 -167
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +105 -83
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/src/features/search/api-slice.d.ts +39 -39
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +24 -24
- package/dist/src/features/skills/api-slice.d.ts +77 -77
- package/dist/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/src/features/stripe/constants.d.ts +5 -1
- package/dist/src/features/stripe/types.d.ts +10 -0
- package/dist/src/features/tenant/api-slice.d.ts +43 -52
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tools/api-slice.d.ts +64 -20
- package/dist/src/features/training-documents/api-slice.d.ts +534 -27
- package/dist/src/features/user/api-slice.d.ts +124 -124
- package/dist/src/features/user/constants.d.ts +3 -1
- package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
- package/dist/src/features/utils.d.ts +8 -5
- package/dist/src/index.d.ts +78 -47
- package/dist/src/reducers/skills.d.ts +2 -1128
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/tests/setupTests.d.ts +1 -1
- package/package.json +16 -13
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const notificationsApiSlice: 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
|
getNotificationsCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
channel?: string;
|
|
5
5
|
status?: string;
|
|
6
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
6
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>;
|
|
7
7
|
getNotifications: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
8
8
|
org: string;
|
|
9
9
|
channel?: string;
|
|
@@ -11,12 +11,23 @@ export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api
|
|
|
11
11
|
excludeChannel?: string;
|
|
12
12
|
startDate?: string;
|
|
13
13
|
status?: string;
|
|
14
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
14
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>;
|
|
15
15
|
markAllAsRead: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
16
16
|
platformKey: string;
|
|
17
17
|
requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
|
|
18
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
19
|
-
|
|
18
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").MarkAllReadResponse, "notificationsApiSlice", any>;
|
|
19
|
+
getNotificationContext: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
20
|
+
platformKey: string;
|
|
21
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>;
|
|
22
|
+
createNotificationPreview: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
23
|
+
platformKey: string;
|
|
24
|
+
requestBody: import("@iblai/iblai-api").NotificationPreview;
|
|
25
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").PreviewResponse, "notificationsApiSlice", any>;
|
|
26
|
+
sendNotification: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
27
|
+
platformKey: string;
|
|
28
|
+
requestBody: import("@iblai/iblai-api").SendNotification;
|
|
29
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").SendResponse, "notificationsApiSlice", any>;
|
|
30
|
+
}, "notificationsApiSlice", "Notifications" | "NotificationBuilder", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
20
31
|
export declare const useGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
21
32
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
22
33
|
originalArgs?: undefined | undefined;
|
|
@@ -39,7 +50,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
39
50
|
org: string;
|
|
40
51
|
channel?: string;
|
|
41
52
|
status?: string;
|
|
42
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
53
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
43
54
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
44
55
|
isUninitialized: false;
|
|
45
56
|
isLoading: false;
|
|
@@ -58,7 +69,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
58
69
|
org: string;
|
|
59
70
|
channel?: string;
|
|
60
71
|
status?: string;
|
|
61
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
62
73
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
63
74
|
isUninitialized: false;
|
|
64
75
|
isLoading: false;
|
|
@@ -73,7 +84,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
73
84
|
org: string;
|
|
74
85
|
channel?: string;
|
|
75
86
|
status?: string;
|
|
76
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
87
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
77
88
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
78
89
|
isUninitialized: false;
|
|
79
90
|
isLoading: false;
|
|
@@ -86,7 +97,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
86
97
|
org: string;
|
|
87
98
|
channel?: string;
|
|
88
99
|
status?: string;
|
|
89
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
100
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
90
101
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
91
102
|
isUninitialized: false;
|
|
92
103
|
isLoading: false;
|
|
@@ -126,7 +137,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
126
137
|
org: string;
|
|
127
138
|
channel?: string;
|
|
128
139
|
status?: string;
|
|
129
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
140
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
130
141
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
131
142
|
isUninitialized: false;
|
|
132
143
|
isLoading: false;
|
|
@@ -145,7 +156,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
145
156
|
org: string;
|
|
146
157
|
channel?: string;
|
|
147
158
|
status?: string;
|
|
148
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
159
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
149
160
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
150
161
|
isUninitialized: false;
|
|
151
162
|
isLoading: false;
|
|
@@ -160,7 +171,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
160
171
|
org: string;
|
|
161
172
|
channel?: string;
|
|
162
173
|
status?: string;
|
|
163
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
174
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
164
175
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
165
176
|
isUninitialized: false;
|
|
166
177
|
isLoading: false;
|
|
@@ -173,7 +184,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
173
184
|
org: string;
|
|
174
185
|
channel?: string;
|
|
175
186
|
status?: string;
|
|
176
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
187
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
177
188
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
178
189
|
isUninitialized: false;
|
|
179
190
|
isLoading: false;
|
|
@@ -188,7 +199,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
188
199
|
org: string;
|
|
189
200
|
channel?: string;
|
|
190
201
|
status?: string;
|
|
191
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
202
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>>;
|
|
192
203
|
}, useLazyGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
193
204
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
194
205
|
originalArgs?: undefined | undefined;
|
|
@@ -211,7 +222,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
211
222
|
org: string;
|
|
212
223
|
channel?: string;
|
|
213
224
|
status?: string;
|
|
214
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
225
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
215
226
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
216
227
|
isUninitialized: false;
|
|
217
228
|
isLoading: false;
|
|
@@ -230,7 +241,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
230
241
|
org: string;
|
|
231
242
|
channel?: string;
|
|
232
243
|
status?: string;
|
|
233
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
244
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
234
245
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
235
246
|
isUninitialized: false;
|
|
236
247
|
isLoading: false;
|
|
@@ -245,7 +256,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
245
256
|
org: string;
|
|
246
257
|
channel?: string;
|
|
247
258
|
status?: string;
|
|
248
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
259
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
249
260
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
250
261
|
isUninitialized: false;
|
|
251
262
|
isLoading: false;
|
|
@@ -258,7 +269,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
258
269
|
org: string;
|
|
259
270
|
channel?: string;
|
|
260
271
|
status?: string;
|
|
261
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
262
273
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
263
274
|
isUninitialized: false;
|
|
264
275
|
isLoading: false;
|
|
@@ -291,7 +302,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
291
302
|
org: string;
|
|
292
303
|
channel?: string;
|
|
293
304
|
status?: string;
|
|
294
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
305
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
295
306
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
296
307
|
isUninitialized: false;
|
|
297
308
|
isLoading: false;
|
|
@@ -310,7 +321,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
310
321
|
org: string;
|
|
311
322
|
channel?: string;
|
|
312
323
|
status?: string;
|
|
313
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
324
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
314
325
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
315
326
|
isUninitialized: false;
|
|
316
327
|
isLoading: false;
|
|
@@ -325,7 +336,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
325
336
|
org: string;
|
|
326
337
|
channel?: string;
|
|
327
338
|
status?: string;
|
|
328
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
339
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
329
340
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
330
341
|
isUninitialized: false;
|
|
331
342
|
isLoading: false;
|
|
@@ -338,7 +349,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
338
349
|
org: string;
|
|
339
350
|
channel?: string;
|
|
340
351
|
status?: string;
|
|
341
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
352
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
342
353
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
343
354
|
isUninitialized: false;
|
|
344
355
|
isLoading: false;
|
|
@@ -356,7 +367,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
356
367
|
org: string;
|
|
357
368
|
channel?: string;
|
|
358
369
|
status?: string;
|
|
359
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
370
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
360
371
|
reset: () => void;
|
|
361
372
|
}, {
|
|
362
373
|
lastArg: {
|
|
@@ -389,7 +400,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
389
400
|
excludeChannel?: string;
|
|
390
401
|
startDate?: string;
|
|
391
402
|
status?: string;
|
|
392
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
403
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
393
404
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
394
405
|
isUninitialized: false;
|
|
395
406
|
isLoading: false;
|
|
@@ -411,7 +422,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
411
422
|
excludeChannel?: string;
|
|
412
423
|
startDate?: string;
|
|
413
424
|
status?: string;
|
|
414
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
425
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
415
426
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
416
427
|
isUninitialized: false;
|
|
417
428
|
isLoading: false;
|
|
@@ -429,7 +440,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
429
440
|
excludeChannel?: string;
|
|
430
441
|
startDate?: string;
|
|
431
442
|
status?: string;
|
|
432
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
443
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
433
444
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
434
445
|
isUninitialized: false;
|
|
435
446
|
isLoading: false;
|
|
@@ -445,7 +456,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
445
456
|
excludeChannel?: string;
|
|
446
457
|
startDate?: string;
|
|
447
458
|
status?: string;
|
|
448
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
459
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
449
460
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
450
461
|
isUninitialized: false;
|
|
451
462
|
isLoading: false;
|
|
@@ -491,7 +502,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
491
502
|
excludeChannel?: string;
|
|
492
503
|
startDate?: string;
|
|
493
504
|
status?: string;
|
|
494
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
505
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
495
506
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
496
507
|
isUninitialized: false;
|
|
497
508
|
isLoading: false;
|
|
@@ -513,7 +524,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
513
524
|
excludeChannel?: string;
|
|
514
525
|
startDate?: string;
|
|
515
526
|
status?: string;
|
|
516
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
527
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
517
528
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
518
529
|
isUninitialized: false;
|
|
519
530
|
isLoading: false;
|
|
@@ -531,7 +542,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
531
542
|
excludeChannel?: string;
|
|
532
543
|
startDate?: string;
|
|
533
544
|
status?: string;
|
|
534
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
545
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
535
546
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
536
547
|
isUninitialized: false;
|
|
537
548
|
isLoading: false;
|
|
@@ -547,7 +558,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
547
558
|
excludeChannel?: string;
|
|
548
559
|
startDate?: string;
|
|
549
560
|
status?: string;
|
|
550
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
561
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
551
562
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
552
563
|
isUninitialized: false;
|
|
553
564
|
isLoading: false;
|
|
@@ -565,7 +576,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
565
576
|
excludeChannel?: string;
|
|
566
577
|
startDate?: string;
|
|
567
578
|
status?: string;
|
|
568
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
579
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>>;
|
|
569
580
|
}, useLazyGetNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
570
581
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
571
582
|
originalArgs?: undefined | undefined;
|
|
@@ -591,7 +602,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
591
602
|
excludeChannel?: string;
|
|
592
603
|
startDate?: string;
|
|
593
604
|
status?: string;
|
|
594
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
605
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
595
606
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
596
607
|
isUninitialized: false;
|
|
597
608
|
isLoading: false;
|
|
@@ -613,7 +624,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
613
624
|
excludeChannel?: string;
|
|
614
625
|
startDate?: string;
|
|
615
626
|
status?: string;
|
|
616
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
627
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
617
628
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
618
629
|
isUninitialized: false;
|
|
619
630
|
isLoading: false;
|
|
@@ -631,7 +642,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
631
642
|
excludeChannel?: string;
|
|
632
643
|
startDate?: string;
|
|
633
644
|
status?: string;
|
|
634
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
645
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
635
646
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
636
647
|
isUninitialized: false;
|
|
637
648
|
isLoading: false;
|
|
@@ -647,7 +658,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
647
658
|
excludeChannel?: string;
|
|
648
659
|
startDate?: string;
|
|
649
660
|
status?: string;
|
|
650
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
661
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
651
662
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
652
663
|
isUninitialized: false;
|
|
653
664
|
isLoading: false;
|
|
@@ -683,7 +694,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
683
694
|
excludeChannel?: string;
|
|
684
695
|
startDate?: string;
|
|
685
696
|
status?: string;
|
|
686
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
697
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
687
698
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
688
699
|
isUninitialized: false;
|
|
689
700
|
isLoading: false;
|
|
@@ -705,7 +716,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
705
716
|
excludeChannel?: string;
|
|
706
717
|
startDate?: string;
|
|
707
718
|
status?: string;
|
|
708
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
719
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
709
720
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
710
721
|
isUninitialized: false;
|
|
711
722
|
isLoading: false;
|
|
@@ -723,7 +734,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
723
734
|
excludeChannel?: string;
|
|
724
735
|
startDate?: string;
|
|
725
736
|
status?: string;
|
|
726
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
737
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
727
738
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
728
739
|
isUninitialized: false;
|
|
729
740
|
isLoading: false;
|
|
@@ -739,7 +750,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
739
750
|
excludeChannel?: string;
|
|
740
751
|
startDate?: string;
|
|
741
752
|
status?: string;
|
|
742
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
753
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
743
754
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
744
755
|
isUninitialized: false;
|
|
745
756
|
isLoading: false;
|
|
@@ -763,7 +774,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
763
774
|
excludeChannel?: string;
|
|
764
775
|
startDate?: string;
|
|
765
776
|
status?: string;
|
|
766
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
777
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
767
778
|
reset: () => void;
|
|
768
779
|
}, {
|
|
769
780
|
lastArg: {
|
|
@@ -937,10 +948,653 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
937
948
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
938
949
|
platformKey: string;
|
|
939
950
|
requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
|
|
940
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
951
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").MarkAllReadResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
941
952
|
originalArgs?: {
|
|
942
953
|
platformKey: string;
|
|
943
954
|
requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
|
|
944
955
|
} | undefined;
|
|
945
956
|
reset: () => void;
|
|
957
|
+
}], useGetNotificationContextQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
958
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
959
|
+
originalArgs?: undefined | undefined;
|
|
960
|
+
data?: undefined | undefined;
|
|
961
|
+
error?: undefined | undefined;
|
|
962
|
+
requestId?: undefined | undefined;
|
|
963
|
+
endpointName?: string | undefined;
|
|
964
|
+
startedTimeStamp?: undefined | undefined;
|
|
965
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
966
|
+
} & {
|
|
967
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
968
|
+
isUninitialized: false;
|
|
969
|
+
isLoading: false;
|
|
970
|
+
isFetching: false;
|
|
971
|
+
isSuccess: false;
|
|
972
|
+
isError: false;
|
|
973
|
+
}, "isUninitialized"> & {
|
|
974
|
+
isUninitialized: true;
|
|
975
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
976
|
+
platformKey: string;
|
|
977
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
978
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
979
|
+
isUninitialized: false;
|
|
980
|
+
isLoading: false;
|
|
981
|
+
isFetching: false;
|
|
982
|
+
isSuccess: false;
|
|
983
|
+
isError: false;
|
|
984
|
+
}, {
|
|
985
|
+
isLoading: true;
|
|
986
|
+
isFetching: boolean;
|
|
987
|
+
data: undefined;
|
|
988
|
+
} | ({
|
|
989
|
+
isSuccess: true;
|
|
990
|
+
isFetching: true;
|
|
991
|
+
error: undefined;
|
|
992
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
993
|
+
platformKey: string;
|
|
994
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
995
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
996
|
+
isUninitialized: false;
|
|
997
|
+
isLoading: false;
|
|
998
|
+
isFetching: false;
|
|
999
|
+
isSuccess: false;
|
|
1000
|
+
isError: false;
|
|
1001
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1002
|
+
isSuccess: true;
|
|
1003
|
+
isFetching: false;
|
|
1004
|
+
error: undefined;
|
|
1005
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1006
|
+
platformKey: string;
|
|
1007
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1008
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1009
|
+
isUninitialized: false;
|
|
1010
|
+
isLoading: false;
|
|
1011
|
+
isFetching: false;
|
|
1012
|
+
isSuccess: false;
|
|
1013
|
+
isError: false;
|
|
1014
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1015
|
+
isError: true;
|
|
1016
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1017
|
+
platformKey: string;
|
|
1018
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1019
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1020
|
+
isUninitialized: false;
|
|
1021
|
+
isLoading: false;
|
|
1022
|
+
isFetching: false;
|
|
1023
|
+
isSuccess: false;
|
|
1024
|
+
isError: false;
|
|
1025
|
+
}, "error">>)>> & {
|
|
1026
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1027
|
+
}>(arg: {
|
|
1028
|
+
platformKey: string;
|
|
1029
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1030
|
+
skip?: boolean;
|
|
1031
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
1032
|
+
} & {
|
|
1033
|
+
skip?: boolean;
|
|
1034
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1035
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1036
|
+
originalArgs?: undefined | undefined;
|
|
1037
|
+
data?: undefined | undefined;
|
|
1038
|
+
error?: undefined | undefined;
|
|
1039
|
+
requestId?: undefined | undefined;
|
|
1040
|
+
endpointName?: string | undefined;
|
|
1041
|
+
startedTimeStamp?: undefined | undefined;
|
|
1042
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1043
|
+
} & {
|
|
1044
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1045
|
+
isUninitialized: false;
|
|
1046
|
+
isLoading: false;
|
|
1047
|
+
isFetching: false;
|
|
1048
|
+
isSuccess: false;
|
|
1049
|
+
isError: false;
|
|
1050
|
+
}, "isUninitialized"> & {
|
|
1051
|
+
isUninitialized: true;
|
|
1052
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1053
|
+
platformKey: string;
|
|
1054
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1055
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1056
|
+
isUninitialized: false;
|
|
1057
|
+
isLoading: false;
|
|
1058
|
+
isFetching: false;
|
|
1059
|
+
isSuccess: false;
|
|
1060
|
+
isError: false;
|
|
1061
|
+
}, {
|
|
1062
|
+
isLoading: true;
|
|
1063
|
+
isFetching: boolean;
|
|
1064
|
+
data: undefined;
|
|
1065
|
+
} | ({
|
|
1066
|
+
isSuccess: true;
|
|
1067
|
+
isFetching: true;
|
|
1068
|
+
error: undefined;
|
|
1069
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1070
|
+
platformKey: string;
|
|
1071
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1072
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1073
|
+
isUninitialized: false;
|
|
1074
|
+
isLoading: false;
|
|
1075
|
+
isFetching: false;
|
|
1076
|
+
isSuccess: false;
|
|
1077
|
+
isError: false;
|
|
1078
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1079
|
+
isSuccess: true;
|
|
1080
|
+
isFetching: false;
|
|
1081
|
+
error: undefined;
|
|
1082
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1083
|
+
platformKey: string;
|
|
1084
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1085
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1086
|
+
isUninitialized: false;
|
|
1087
|
+
isLoading: false;
|
|
1088
|
+
isFetching: false;
|
|
1089
|
+
isSuccess: false;
|
|
1090
|
+
isError: false;
|
|
1091
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1092
|
+
isError: true;
|
|
1093
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1094
|
+
platformKey: string;
|
|
1095
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1096
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1097
|
+
isUninitialized: false;
|
|
1098
|
+
isLoading: false;
|
|
1099
|
+
isFetching: false;
|
|
1100
|
+
isSuccess: false;
|
|
1101
|
+
isError: false;
|
|
1102
|
+
}, "error">>)>> & {
|
|
1103
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1104
|
+
}) => R) | undefined;
|
|
1105
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1106
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1107
|
+
platformKey: string;
|
|
1108
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>>;
|
|
1109
|
+
}, useLazyGetNotificationContextQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1110
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1111
|
+
originalArgs?: undefined | undefined;
|
|
1112
|
+
data?: undefined | undefined;
|
|
1113
|
+
error?: undefined | undefined;
|
|
1114
|
+
requestId?: undefined | undefined;
|
|
1115
|
+
endpointName?: string | undefined;
|
|
1116
|
+
startedTimeStamp?: undefined | undefined;
|
|
1117
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1118
|
+
} & {
|
|
1119
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1120
|
+
isUninitialized: false;
|
|
1121
|
+
isLoading: false;
|
|
1122
|
+
isFetching: false;
|
|
1123
|
+
isSuccess: false;
|
|
1124
|
+
isError: false;
|
|
1125
|
+
}, "isUninitialized"> & {
|
|
1126
|
+
isUninitialized: true;
|
|
1127
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1128
|
+
platformKey: string;
|
|
1129
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1130
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1131
|
+
isUninitialized: false;
|
|
1132
|
+
isLoading: false;
|
|
1133
|
+
isFetching: false;
|
|
1134
|
+
isSuccess: false;
|
|
1135
|
+
isError: false;
|
|
1136
|
+
}, {
|
|
1137
|
+
isLoading: true;
|
|
1138
|
+
isFetching: boolean;
|
|
1139
|
+
data: undefined;
|
|
1140
|
+
} | ({
|
|
1141
|
+
isSuccess: true;
|
|
1142
|
+
isFetching: true;
|
|
1143
|
+
error: undefined;
|
|
1144
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1145
|
+
platformKey: string;
|
|
1146
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1147
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1148
|
+
isUninitialized: false;
|
|
1149
|
+
isLoading: false;
|
|
1150
|
+
isFetching: false;
|
|
1151
|
+
isSuccess: false;
|
|
1152
|
+
isError: false;
|
|
1153
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1154
|
+
isSuccess: true;
|
|
1155
|
+
isFetching: false;
|
|
1156
|
+
error: undefined;
|
|
1157
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1158
|
+
platformKey: string;
|
|
1159
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1160
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1161
|
+
isUninitialized: false;
|
|
1162
|
+
isLoading: false;
|
|
1163
|
+
isFetching: false;
|
|
1164
|
+
isSuccess: false;
|
|
1165
|
+
isError: false;
|
|
1166
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1167
|
+
isError: true;
|
|
1168
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1169
|
+
platformKey: string;
|
|
1170
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1171
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1172
|
+
isUninitialized: false;
|
|
1173
|
+
isLoading: false;
|
|
1174
|
+
isFetching: false;
|
|
1175
|
+
isSuccess: false;
|
|
1176
|
+
isError: false;
|
|
1177
|
+
}, "error">>)>> & {
|
|
1178
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1179
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
1180
|
+
skip?: boolean;
|
|
1181
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1182
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1183
|
+
originalArgs?: undefined | undefined;
|
|
1184
|
+
data?: undefined | undefined;
|
|
1185
|
+
error?: undefined | undefined;
|
|
1186
|
+
requestId?: undefined | undefined;
|
|
1187
|
+
endpointName?: string | undefined;
|
|
1188
|
+
startedTimeStamp?: undefined | undefined;
|
|
1189
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1190
|
+
} & {
|
|
1191
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1192
|
+
isUninitialized: false;
|
|
1193
|
+
isLoading: false;
|
|
1194
|
+
isFetching: false;
|
|
1195
|
+
isSuccess: false;
|
|
1196
|
+
isError: false;
|
|
1197
|
+
}, "isUninitialized"> & {
|
|
1198
|
+
isUninitialized: true;
|
|
1199
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1200
|
+
platformKey: string;
|
|
1201
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1202
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1203
|
+
isUninitialized: false;
|
|
1204
|
+
isLoading: false;
|
|
1205
|
+
isFetching: false;
|
|
1206
|
+
isSuccess: false;
|
|
1207
|
+
isError: false;
|
|
1208
|
+
}, {
|
|
1209
|
+
isLoading: true;
|
|
1210
|
+
isFetching: boolean;
|
|
1211
|
+
data: undefined;
|
|
1212
|
+
} | ({
|
|
1213
|
+
isSuccess: true;
|
|
1214
|
+
isFetching: true;
|
|
1215
|
+
error: undefined;
|
|
1216
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1217
|
+
platformKey: string;
|
|
1218
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1219
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1220
|
+
isUninitialized: false;
|
|
1221
|
+
isLoading: false;
|
|
1222
|
+
isFetching: false;
|
|
1223
|
+
isSuccess: false;
|
|
1224
|
+
isError: false;
|
|
1225
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1226
|
+
isSuccess: true;
|
|
1227
|
+
isFetching: false;
|
|
1228
|
+
error: undefined;
|
|
1229
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1230
|
+
platformKey: string;
|
|
1231
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1232
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1233
|
+
isUninitialized: false;
|
|
1234
|
+
isLoading: false;
|
|
1235
|
+
isFetching: false;
|
|
1236
|
+
isSuccess: false;
|
|
1237
|
+
isError: false;
|
|
1238
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1239
|
+
isError: true;
|
|
1240
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1241
|
+
platformKey: string;
|
|
1242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1243
|
+
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1244
|
+
isUninitialized: false;
|
|
1245
|
+
isLoading: false;
|
|
1246
|
+
isFetching: false;
|
|
1247
|
+
isSuccess: false;
|
|
1248
|
+
isError: false;
|
|
1249
|
+
}, "error">>)>> & {
|
|
1250
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1251
|
+
}) => R) | undefined;
|
|
1252
|
+
}, "skip">) | undefined) => [(arg: {
|
|
1253
|
+
platformKey: string;
|
|
1254
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1255
|
+
platformKey: string;
|
|
1256
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1257
|
+
reset: () => void;
|
|
1258
|
+
}, {
|
|
1259
|
+
lastArg: {
|
|
1260
|
+
platformKey: string;
|
|
1261
|
+
};
|
|
1262
|
+
}], useCreateNotificationPreviewMutation: <R extends Record<string, any> = ({
|
|
1263
|
+
requestId?: undefined;
|
|
1264
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1265
|
+
data?: undefined;
|
|
1266
|
+
error?: undefined;
|
|
1267
|
+
endpointName?: string;
|
|
1268
|
+
startedTimeStamp?: undefined;
|
|
1269
|
+
fulfilledTimeStamp?: undefined;
|
|
1270
|
+
} & {
|
|
1271
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1272
|
+
isUninitialized: true;
|
|
1273
|
+
isLoading: false;
|
|
1274
|
+
isSuccess: false;
|
|
1275
|
+
isError: false;
|
|
1276
|
+
}) | ({
|
|
1277
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1278
|
+
} & Omit<{
|
|
1279
|
+
requestId: string;
|
|
1280
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1281
|
+
error?: unknown;
|
|
1282
|
+
endpointName: string;
|
|
1283
|
+
startedTimeStamp: number;
|
|
1284
|
+
fulfilledTimeStamp?: number;
|
|
1285
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1286
|
+
requestId: string;
|
|
1287
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1288
|
+
error?: unknown;
|
|
1289
|
+
endpointName: string;
|
|
1290
|
+
startedTimeStamp: number;
|
|
1291
|
+
fulfilledTimeStamp?: number;
|
|
1292
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1293
|
+
error: undefined;
|
|
1294
|
+
} & {
|
|
1295
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1296
|
+
isUninitialized: false;
|
|
1297
|
+
isLoading: false;
|
|
1298
|
+
isSuccess: true;
|
|
1299
|
+
isError: false;
|
|
1300
|
+
}) | ({
|
|
1301
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1302
|
+
} & {
|
|
1303
|
+
requestId: string;
|
|
1304
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1305
|
+
error?: unknown;
|
|
1306
|
+
endpointName: string;
|
|
1307
|
+
startedTimeStamp: number;
|
|
1308
|
+
fulfilledTimeStamp?: number;
|
|
1309
|
+
} & {
|
|
1310
|
+
data?: undefined;
|
|
1311
|
+
} & {
|
|
1312
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1313
|
+
isUninitialized: false;
|
|
1314
|
+
isLoading: true;
|
|
1315
|
+
isSuccess: false;
|
|
1316
|
+
isError: false;
|
|
1317
|
+
}) | ({
|
|
1318
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1319
|
+
} & Omit<{
|
|
1320
|
+
requestId: string;
|
|
1321
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1322
|
+
error?: unknown;
|
|
1323
|
+
endpointName: string;
|
|
1324
|
+
startedTimeStamp: number;
|
|
1325
|
+
fulfilledTimeStamp?: number;
|
|
1326
|
+
}, "error"> & Required<Pick<{
|
|
1327
|
+
requestId: string;
|
|
1328
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1329
|
+
error?: unknown;
|
|
1330
|
+
endpointName: string;
|
|
1331
|
+
startedTimeStamp: number;
|
|
1332
|
+
fulfilledTimeStamp?: number;
|
|
1333
|
+
}, "error">> & {
|
|
1334
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1335
|
+
isUninitialized: false;
|
|
1336
|
+
isLoading: false;
|
|
1337
|
+
isSuccess: false;
|
|
1338
|
+
isError: true;
|
|
1339
|
+
})>(options?: {
|
|
1340
|
+
selectFromResult?: ((state: ({
|
|
1341
|
+
requestId?: undefined;
|
|
1342
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1343
|
+
data?: undefined;
|
|
1344
|
+
error?: undefined;
|
|
1345
|
+
endpointName?: string;
|
|
1346
|
+
startedTimeStamp?: undefined;
|
|
1347
|
+
fulfilledTimeStamp?: undefined;
|
|
1348
|
+
} & {
|
|
1349
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1350
|
+
isUninitialized: true;
|
|
1351
|
+
isLoading: false;
|
|
1352
|
+
isSuccess: false;
|
|
1353
|
+
isError: false;
|
|
1354
|
+
}) | ({
|
|
1355
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1356
|
+
} & Omit<{
|
|
1357
|
+
requestId: string;
|
|
1358
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1359
|
+
error?: unknown;
|
|
1360
|
+
endpointName: string;
|
|
1361
|
+
startedTimeStamp: number;
|
|
1362
|
+
fulfilledTimeStamp?: number;
|
|
1363
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1364
|
+
requestId: string;
|
|
1365
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1366
|
+
error?: unknown;
|
|
1367
|
+
endpointName: string;
|
|
1368
|
+
startedTimeStamp: number;
|
|
1369
|
+
fulfilledTimeStamp?: number;
|
|
1370
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1371
|
+
error: undefined;
|
|
1372
|
+
} & {
|
|
1373
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1374
|
+
isUninitialized: false;
|
|
1375
|
+
isLoading: false;
|
|
1376
|
+
isSuccess: true;
|
|
1377
|
+
isError: false;
|
|
1378
|
+
}) | ({
|
|
1379
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1380
|
+
} & {
|
|
1381
|
+
requestId: string;
|
|
1382
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1383
|
+
error?: unknown;
|
|
1384
|
+
endpointName: string;
|
|
1385
|
+
startedTimeStamp: number;
|
|
1386
|
+
fulfilledTimeStamp?: number;
|
|
1387
|
+
} & {
|
|
1388
|
+
data?: undefined;
|
|
1389
|
+
} & {
|
|
1390
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1391
|
+
isUninitialized: false;
|
|
1392
|
+
isLoading: true;
|
|
1393
|
+
isSuccess: false;
|
|
1394
|
+
isError: false;
|
|
1395
|
+
}) | ({
|
|
1396
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1397
|
+
} & Omit<{
|
|
1398
|
+
requestId: string;
|
|
1399
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1400
|
+
error?: unknown;
|
|
1401
|
+
endpointName: string;
|
|
1402
|
+
startedTimeStamp: number;
|
|
1403
|
+
fulfilledTimeStamp?: number;
|
|
1404
|
+
}, "error"> & Required<Pick<{
|
|
1405
|
+
requestId: string;
|
|
1406
|
+
data?: import("@iblai/iblai-api").PreviewResponse | undefined;
|
|
1407
|
+
error?: unknown;
|
|
1408
|
+
endpointName: string;
|
|
1409
|
+
startedTimeStamp: number;
|
|
1410
|
+
fulfilledTimeStamp?: number;
|
|
1411
|
+
}, "error">> & {
|
|
1412
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1413
|
+
isUninitialized: false;
|
|
1414
|
+
isLoading: false;
|
|
1415
|
+
isSuccess: false;
|
|
1416
|
+
isError: true;
|
|
1417
|
+
})) => R) | undefined;
|
|
1418
|
+
fixedCacheKey?: string;
|
|
1419
|
+
} | undefined) => readonly [(arg: {
|
|
1420
|
+
platformKey: string;
|
|
1421
|
+
requestBody: import("@iblai/iblai-api").NotificationPreview;
|
|
1422
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1423
|
+
platformKey: string;
|
|
1424
|
+
requestBody: import("@iblai/iblai-api").NotificationPreview;
|
|
1425
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").PreviewResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1426
|
+
originalArgs?: {
|
|
1427
|
+
platformKey: string;
|
|
1428
|
+
requestBody: import("@iblai/iblai-api").NotificationPreview;
|
|
1429
|
+
} | undefined;
|
|
1430
|
+
reset: () => void;
|
|
1431
|
+
}], useSendNotificationMutation: <R extends Record<string, any> = ({
|
|
1432
|
+
requestId?: undefined;
|
|
1433
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1434
|
+
data?: undefined;
|
|
1435
|
+
error?: undefined;
|
|
1436
|
+
endpointName?: string;
|
|
1437
|
+
startedTimeStamp?: undefined;
|
|
1438
|
+
fulfilledTimeStamp?: undefined;
|
|
1439
|
+
} & {
|
|
1440
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1441
|
+
isUninitialized: true;
|
|
1442
|
+
isLoading: false;
|
|
1443
|
+
isSuccess: false;
|
|
1444
|
+
isError: false;
|
|
1445
|
+
}) | ({
|
|
1446
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1447
|
+
} & Omit<{
|
|
1448
|
+
requestId: string;
|
|
1449
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1450
|
+
error?: unknown;
|
|
1451
|
+
endpointName: string;
|
|
1452
|
+
startedTimeStamp: number;
|
|
1453
|
+
fulfilledTimeStamp?: number;
|
|
1454
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1455
|
+
requestId: string;
|
|
1456
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1457
|
+
error?: unknown;
|
|
1458
|
+
endpointName: string;
|
|
1459
|
+
startedTimeStamp: number;
|
|
1460
|
+
fulfilledTimeStamp?: number;
|
|
1461
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1462
|
+
error: undefined;
|
|
1463
|
+
} & {
|
|
1464
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1465
|
+
isUninitialized: false;
|
|
1466
|
+
isLoading: false;
|
|
1467
|
+
isSuccess: true;
|
|
1468
|
+
isError: false;
|
|
1469
|
+
}) | ({
|
|
1470
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1471
|
+
} & {
|
|
1472
|
+
requestId: string;
|
|
1473
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1474
|
+
error?: unknown;
|
|
1475
|
+
endpointName: string;
|
|
1476
|
+
startedTimeStamp: number;
|
|
1477
|
+
fulfilledTimeStamp?: number;
|
|
1478
|
+
} & {
|
|
1479
|
+
data?: undefined;
|
|
1480
|
+
} & {
|
|
1481
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1482
|
+
isUninitialized: false;
|
|
1483
|
+
isLoading: true;
|
|
1484
|
+
isSuccess: false;
|
|
1485
|
+
isError: false;
|
|
1486
|
+
}) | ({
|
|
1487
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1488
|
+
} & Omit<{
|
|
1489
|
+
requestId: string;
|
|
1490
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1491
|
+
error?: unknown;
|
|
1492
|
+
endpointName: string;
|
|
1493
|
+
startedTimeStamp: number;
|
|
1494
|
+
fulfilledTimeStamp?: number;
|
|
1495
|
+
}, "error"> & Required<Pick<{
|
|
1496
|
+
requestId: string;
|
|
1497
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1498
|
+
error?: unknown;
|
|
1499
|
+
endpointName: string;
|
|
1500
|
+
startedTimeStamp: number;
|
|
1501
|
+
fulfilledTimeStamp?: number;
|
|
1502
|
+
}, "error">> & {
|
|
1503
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1504
|
+
isUninitialized: false;
|
|
1505
|
+
isLoading: false;
|
|
1506
|
+
isSuccess: false;
|
|
1507
|
+
isError: true;
|
|
1508
|
+
})>(options?: {
|
|
1509
|
+
selectFromResult?: ((state: ({
|
|
1510
|
+
requestId?: undefined;
|
|
1511
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1512
|
+
data?: undefined;
|
|
1513
|
+
error?: undefined;
|
|
1514
|
+
endpointName?: string;
|
|
1515
|
+
startedTimeStamp?: undefined;
|
|
1516
|
+
fulfilledTimeStamp?: undefined;
|
|
1517
|
+
} & {
|
|
1518
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1519
|
+
isUninitialized: true;
|
|
1520
|
+
isLoading: false;
|
|
1521
|
+
isSuccess: false;
|
|
1522
|
+
isError: false;
|
|
1523
|
+
}) | ({
|
|
1524
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1525
|
+
} & Omit<{
|
|
1526
|
+
requestId: string;
|
|
1527
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1528
|
+
error?: unknown;
|
|
1529
|
+
endpointName: string;
|
|
1530
|
+
startedTimeStamp: number;
|
|
1531
|
+
fulfilledTimeStamp?: number;
|
|
1532
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1533
|
+
requestId: string;
|
|
1534
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1535
|
+
error?: unknown;
|
|
1536
|
+
endpointName: string;
|
|
1537
|
+
startedTimeStamp: number;
|
|
1538
|
+
fulfilledTimeStamp?: number;
|
|
1539
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1540
|
+
error: undefined;
|
|
1541
|
+
} & {
|
|
1542
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1543
|
+
isUninitialized: false;
|
|
1544
|
+
isLoading: false;
|
|
1545
|
+
isSuccess: true;
|
|
1546
|
+
isError: false;
|
|
1547
|
+
}) | ({
|
|
1548
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1549
|
+
} & {
|
|
1550
|
+
requestId: string;
|
|
1551
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1552
|
+
error?: unknown;
|
|
1553
|
+
endpointName: string;
|
|
1554
|
+
startedTimeStamp: number;
|
|
1555
|
+
fulfilledTimeStamp?: number;
|
|
1556
|
+
} & {
|
|
1557
|
+
data?: undefined;
|
|
1558
|
+
} & {
|
|
1559
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1560
|
+
isUninitialized: false;
|
|
1561
|
+
isLoading: true;
|
|
1562
|
+
isSuccess: false;
|
|
1563
|
+
isError: false;
|
|
1564
|
+
}) | ({
|
|
1565
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1566
|
+
} & Omit<{
|
|
1567
|
+
requestId: string;
|
|
1568
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1569
|
+
error?: unknown;
|
|
1570
|
+
endpointName: string;
|
|
1571
|
+
startedTimeStamp: number;
|
|
1572
|
+
fulfilledTimeStamp?: number;
|
|
1573
|
+
}, "error"> & Required<Pick<{
|
|
1574
|
+
requestId: string;
|
|
1575
|
+
data?: import("@iblai/iblai-api").SendResponse | undefined;
|
|
1576
|
+
error?: unknown;
|
|
1577
|
+
endpointName: string;
|
|
1578
|
+
startedTimeStamp: number;
|
|
1579
|
+
fulfilledTimeStamp?: number;
|
|
1580
|
+
}, "error">> & {
|
|
1581
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1582
|
+
isUninitialized: false;
|
|
1583
|
+
isLoading: false;
|
|
1584
|
+
isSuccess: false;
|
|
1585
|
+
isError: true;
|
|
1586
|
+
})) => R) | undefined;
|
|
1587
|
+
fixedCacheKey?: string;
|
|
1588
|
+
} | undefined) => readonly [(arg: {
|
|
1589
|
+
platformKey: string;
|
|
1590
|
+
requestBody: import("@iblai/iblai-api").SendNotification;
|
|
1591
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1592
|
+
platformKey: string;
|
|
1593
|
+
requestBody: import("@iblai/iblai-api").SendNotification;
|
|
1594
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").SendResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1595
|
+
originalArgs?: {
|
|
1596
|
+
platformKey: string;
|
|
1597
|
+
requestBody: import("@iblai/iblai-api").SendNotification;
|
|
1598
|
+
} | undefined;
|
|
1599
|
+
reset: () => void;
|
|
946
1600
|
}];
|