@iblai/data-layer 0.0.4 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/dist/index.d.ts +39165 -23
  2. package/dist/index.esm.js +23977 -16560
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +24138 -16560
  5. package/dist/index.js.map +1 -1
  6. package/dist/package.json +82 -0
  7. package/dist/src/config.d.ts +2 -0
  8. package/dist/src/constants.d.ts +2 -3
  9. package/dist/src/features/analytics/api-slice.d.ts +1600 -0
  10. package/dist/src/features/analytics/constants.d.ts +66 -0
  11. package/dist/src/features/analytics/types.d.ts +100 -0
  12. package/dist/src/features/api-keys/api-slice.d.ts +104 -33
  13. package/dist/src/features/apps/api-slice.d.ts +683 -0
  14. package/dist/src/features/auth/api-slice.d.ts +137 -0
  15. package/dist/src/features/auth/constants.d.ts +8 -0
  16. package/dist/src/features/auth/types.d.ts +13 -0
  17. package/dist/src/features/billing/api-slice.d.ts +349 -0
  18. package/dist/{features/api-keys → src/features/career}/api-slice.d.ts +392 -299
  19. package/dist/src/features/catalog/api-slice.d.ts +6602 -1
  20. package/dist/src/features/chat/api-slice.d.ts +1566 -31
  21. package/dist/src/features/chat/chat-slice.d.ts +4 -7
  22. package/dist/src/features/chat-history/api-slice.d.ts +517 -243
  23. package/dist/src/features/core/api-slice.d.ts +493 -4
  24. package/dist/src/features/core/constants.d.ts +4 -0
  25. package/dist/src/features/credentials/api-slice.d.ts +1661 -63
  26. package/dist/src/features/credentials/constants.d.ts +28 -0
  27. package/dist/src/features/credentials/custom-api-slice.d.ts +1284 -0
  28. package/dist/src/features/credentials/types.d.ts +16 -0
  29. package/dist/src/features/datasets/api-slice.d.ts +351 -42
  30. package/dist/src/features/llms/api-slice.d.ts +88 -22
  31. package/dist/src/features/memory/api-slice.d.ts +1222 -0
  32. package/dist/src/features/mentor/api-slice.d.ts +2628 -146
  33. package/dist/src/features/mentor/constants.d.ts +31 -0
  34. package/dist/src/features/mentor/custom-api-slice.d.ts +268 -0
  35. package/dist/src/features/mentor/types.d.ts +38 -0
  36. package/dist/src/features/mentor-categories/api-slice.d.ts +66 -22
  37. package/dist/src/features/notifications/api-slice.d.ts +946 -0
  38. package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
  39. package/dist/src/features/platform/api-slice.d.ts +769 -49
  40. package/dist/src/features/prompts/api-slice.d.ts +1334 -72
  41. package/dist/src/features/search/api-slice.d.ts +1939 -0
  42. package/dist/src/features/sessions/api-slice.d.ts +705 -0
  43. package/dist/src/features/skills/api-slice.d.ts +504 -64
  44. package/dist/src/features/stripe/api-slice.d.ts +620 -0
  45. package/dist/src/features/stripe/constants.d.ts +15 -0
  46. package/dist/src/features/stripe/types.d.ts +9 -0
  47. package/dist/src/features/tenant/api-slice.d.ts +268 -45
  48. package/dist/src/features/tenant/constants.d.ts +1 -1
  49. package/dist/src/features/tenant-logo/api-slice.d.ts +349 -0
  50. package/dist/src/features/tenant-logo/constants.d.ts +24 -0
  51. package/dist/src/features/tools/api-slice.d.ts +88 -22
  52. package/dist/src/features/training-documents/api-slice.d.ts +223 -51
  53. package/dist/src/features/user/api-slice.d.ts +1457 -22
  54. package/dist/src/features/user/constants.d.ts +30 -1
  55. package/dist/src/features/user/types.d.ts +65 -2
  56. package/dist/src/features/user-invitations/api-slice.d.ts +345 -55
  57. package/dist/src/features/utils.d.ts +25 -5
  58. package/dist/src/index.d.ts +24 -0
  59. package/dist/src/reducers/index.d.ts +1 -0
  60. package/dist/src/reducers/mentor.d.ts +2 -120
  61. package/dist/src/reducers/skills.d.ts +1128 -0
  62. package/dist/src/utils/index.d.ts +2 -2
  63. package/dist/tests/features/analytics/constants.test.d.ts +1 -0
  64. package/dist/tests/features/user/api-slice.test.d.ts +1 -0
  65. package/dist/tests/features/user/constants.test.d.ts +1 -0
  66. package/dist/tests/setupTests.d.ts +1 -0
  67. package/package.json +31 -25
  68. package/dist/config.d.ts +0 -5
  69. package/dist/constants.d.ts +0 -31
  70. package/dist/core/index.d.ts +0 -4
  71. package/dist/features/chat/api-slice.d.ts +0 -956
  72. package/dist/features/chat/chat-slice.d.ts +0 -15
  73. package/dist/features/chat-history/api-slice.d.ts +0 -956
  74. package/dist/features/chat-history/constants.d.ts +0 -3
  75. package/dist/features/core/api-slice.d.ts +0 -164
  76. package/dist/features/credentials/api-slice.d.ts +0 -531
  77. package/dist/features/datasets/api-slice.d.ts +0 -267
  78. package/dist/features/index.d.ts +0 -1
  79. package/dist/features/llms/api-slice.d.ts +0 -267
  80. package/dist/features/mentor/api-slice.d.ts +0 -1816
  81. package/dist/features/mentor-categories/api-slice.d.ts +0 -267
  82. package/dist/features/platform/api-slice.d.ts +0 -735
  83. package/dist/features/prompts/api-slice.d.ts +0 -1014
  84. package/dist/features/skills/api-slice.d.ts +0 -795
  85. package/dist/features/tenant/api-slice.d.ts +0 -536
  86. package/dist/features/tenant/constants.d.ts +0 -11
  87. package/dist/features/tenant/types.d.ts +0 -18
  88. package/dist/features/tools/api-slice.d.ts +0 -267
  89. package/dist/features/training-documents/api-slice.d.ts +0 -750
  90. package/dist/features/user/api-slice.d.ts +0 -751
  91. package/dist/features/user/constants.d.ts +0 -19
  92. package/dist/features/user/types.d.ts +0 -64
  93. package/dist/features/user-invitations/api-slice.d.ts +0 -428
  94. package/dist/features/utils.d.ts +0 -46
  95. package/dist/node_modules/@iblai/iblai-api/src/core/ApiError.d.ts +0 -10
  96. package/dist/node_modules/@iblai/iblai-api/src/core/ApiRequestOptions.d.ts +0 -13
  97. package/dist/node_modules/@iblai/iblai-api/src/core/ApiResult.d.ts +0 -7
  98. package/dist/node_modules/@iblai/iblai-api/src/core/CancelablePromise.d.ts +0 -20
  99. package/dist/node_modules/@iblai/iblai-api/src/core/OpenAPI.d.ts +0 -16
  100. package/dist/node_modules/@iblai/iblai-api/src/core/request.d.ts +0 -30
  101. package/dist/reducers/index.d.ts +0 -1
  102. package/dist/reducers/mentor.d.ts +0 -135
  103. package/dist/services/StorageService.d.ts +0 -5
  104. package/dist/src/features/chat-history/constants.d.ts +0 -8
  105. package/dist/utils/index.d.ts +0 -2
  106. /package/dist/{features → src/features}/constants.d.ts +0 -0
  107. /package/dist/{features/catalog/api-slice.d.ts → tests/features/analytics/api-slice.test.d.ts} +0 -0
@@ -0,0 +1,946 @@
1
+ export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
2
+ getNotificationsCount: import("@reduxjs/toolkit/query").QueryDefinition<{
3
+ org: string;
4
+ channel?: string;
5
+ status?: string;
6
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>;
7
+ getNotifications: import("@reduxjs/toolkit/query").QueryDefinition<{
8
+ org: string;
9
+ channel?: string;
10
+ endDate?: string;
11
+ excludeChannel?: string;
12
+ startDate?: string;
13
+ status?: string;
14
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>;
15
+ markAllAsRead: import("@reduxjs/toolkit/query").MutationDefinition<{
16
+ platformKey: string;
17
+ requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
18
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").MarkAllReadResponse, "notificationsApiSlice", any>;
19
+ }, "notificationsApiSlice", "Notifications", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
20
+ export declare const useGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
21
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
22
+ originalArgs?: undefined | undefined;
23
+ data?: undefined | undefined;
24
+ error?: undefined | undefined;
25
+ requestId?: undefined | undefined;
26
+ endpointName?: string | undefined;
27
+ startedTimeStamp?: undefined | undefined;
28
+ fulfilledTimeStamp?: undefined | undefined;
29
+ } & {
30
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
31
+ isUninitialized: false;
32
+ isLoading: false;
33
+ isFetching: false;
34
+ isSuccess: false;
35
+ isError: false;
36
+ }, "isUninitialized"> & {
37
+ isUninitialized: true;
38
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
39
+ org: string;
40
+ channel?: string;
41
+ status?: string;
42
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
43
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
44
+ isUninitialized: false;
45
+ isLoading: false;
46
+ isFetching: false;
47
+ isSuccess: false;
48
+ isError: false;
49
+ }, {
50
+ isLoading: true;
51
+ isFetching: boolean;
52
+ data: undefined;
53
+ } | ({
54
+ isSuccess: true;
55
+ isFetching: true;
56
+ error: undefined;
57
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
58
+ org: string;
59
+ channel?: string;
60
+ status?: string;
61
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
62
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
63
+ isUninitialized: false;
64
+ isLoading: false;
65
+ isFetching: false;
66
+ isSuccess: false;
67
+ isError: false;
68
+ }, "data" | "fulfilledTimeStamp">>) | ({
69
+ isSuccess: true;
70
+ isFetching: false;
71
+ error: undefined;
72
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
73
+ org: string;
74
+ channel?: string;
75
+ status?: string;
76
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
77
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
78
+ isUninitialized: false;
79
+ isLoading: false;
80
+ isFetching: false;
81
+ isSuccess: false;
82
+ isError: false;
83
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
84
+ isError: true;
85
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
86
+ org: string;
87
+ channel?: string;
88
+ status?: string;
89
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
90
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
91
+ isUninitialized: false;
92
+ isLoading: false;
93
+ isFetching: false;
94
+ isSuccess: false;
95
+ isError: false;
96
+ }, "error">>)>> & {
97
+ status: import("@reduxjs/toolkit/query").QueryStatus;
98
+ }>(arg: {
99
+ org: string;
100
+ channel?: string;
101
+ status?: string;
102
+ } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
103
+ skip?: boolean;
104
+ refetchOnMountOrArgChange?: boolean | number;
105
+ } & {
106
+ skip?: boolean;
107
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
108
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
109
+ originalArgs?: undefined | undefined;
110
+ data?: undefined | undefined;
111
+ error?: undefined | undefined;
112
+ requestId?: undefined | undefined;
113
+ endpointName?: string | undefined;
114
+ startedTimeStamp?: undefined | undefined;
115
+ fulfilledTimeStamp?: undefined | undefined;
116
+ } & {
117
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
118
+ isUninitialized: false;
119
+ isLoading: false;
120
+ isFetching: false;
121
+ isSuccess: false;
122
+ isError: false;
123
+ }, "isUninitialized"> & {
124
+ isUninitialized: true;
125
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
126
+ org: string;
127
+ channel?: string;
128
+ status?: string;
129
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
130
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
131
+ isUninitialized: false;
132
+ isLoading: false;
133
+ isFetching: false;
134
+ isSuccess: false;
135
+ isError: false;
136
+ }, {
137
+ isLoading: true;
138
+ isFetching: boolean;
139
+ data: undefined;
140
+ } | ({
141
+ isSuccess: true;
142
+ isFetching: true;
143
+ error: undefined;
144
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
145
+ org: string;
146
+ channel?: string;
147
+ status?: string;
148
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
149
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
150
+ isUninitialized: false;
151
+ isLoading: false;
152
+ isFetching: false;
153
+ isSuccess: false;
154
+ isError: false;
155
+ }, "data" | "fulfilledTimeStamp">>) | ({
156
+ isSuccess: true;
157
+ isFetching: false;
158
+ error: undefined;
159
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
160
+ org: string;
161
+ channel?: string;
162
+ status?: string;
163
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
164
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
165
+ isUninitialized: false;
166
+ isLoading: false;
167
+ isFetching: false;
168
+ isSuccess: false;
169
+ isError: false;
170
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
171
+ isError: true;
172
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
173
+ org: string;
174
+ channel?: string;
175
+ status?: string;
176
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
177
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
178
+ isUninitialized: false;
179
+ isLoading: false;
180
+ isFetching: false;
181
+ isSuccess: false;
182
+ isError: false;
183
+ }, "error">>)>> & {
184
+ status: import("@reduxjs/toolkit/query").QueryStatus;
185
+ }) => R) | undefined;
186
+ }) | undefined) => [R][R extends any ? 0 : never] & {
187
+ refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
188
+ org: string;
189
+ channel?: string;
190
+ status?: string;
191
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>>;
192
+ }, useLazyGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
193
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
194
+ originalArgs?: undefined | undefined;
195
+ data?: undefined | undefined;
196
+ error?: undefined | undefined;
197
+ requestId?: undefined | undefined;
198
+ endpointName?: string | undefined;
199
+ startedTimeStamp?: undefined | undefined;
200
+ fulfilledTimeStamp?: undefined | undefined;
201
+ } & {
202
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
203
+ isUninitialized: false;
204
+ isLoading: false;
205
+ isFetching: false;
206
+ isSuccess: false;
207
+ isError: false;
208
+ }, "isUninitialized"> & {
209
+ isUninitialized: true;
210
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
211
+ org: string;
212
+ channel?: string;
213
+ status?: string;
214
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
215
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
216
+ isUninitialized: false;
217
+ isLoading: false;
218
+ isFetching: false;
219
+ isSuccess: false;
220
+ isError: false;
221
+ }, {
222
+ isLoading: true;
223
+ isFetching: boolean;
224
+ data: undefined;
225
+ } | ({
226
+ isSuccess: true;
227
+ isFetching: true;
228
+ error: undefined;
229
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
230
+ org: string;
231
+ channel?: string;
232
+ status?: string;
233
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
234
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
235
+ isUninitialized: false;
236
+ isLoading: false;
237
+ isFetching: false;
238
+ isSuccess: false;
239
+ isError: false;
240
+ }, "data" | "fulfilledTimeStamp">>) | ({
241
+ isSuccess: true;
242
+ isFetching: false;
243
+ error: undefined;
244
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
245
+ org: string;
246
+ channel?: string;
247
+ status?: string;
248
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
249
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
250
+ isUninitialized: false;
251
+ isLoading: false;
252
+ isFetching: false;
253
+ isSuccess: false;
254
+ isError: false;
255
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
256
+ isError: true;
257
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
258
+ org: string;
259
+ channel?: string;
260
+ status?: string;
261
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
262
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
263
+ isUninitialized: false;
264
+ isLoading: false;
265
+ isFetching: false;
266
+ isSuccess: false;
267
+ isError: false;
268
+ }, "error">>)>> & {
269
+ status: import("@reduxjs/toolkit/query").QueryStatus;
270
+ }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
271
+ skip?: boolean;
272
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
273
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
274
+ originalArgs?: undefined | undefined;
275
+ data?: undefined | undefined;
276
+ error?: undefined | undefined;
277
+ requestId?: undefined | undefined;
278
+ endpointName?: string | undefined;
279
+ startedTimeStamp?: undefined | undefined;
280
+ fulfilledTimeStamp?: undefined | undefined;
281
+ } & {
282
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
283
+ isUninitialized: false;
284
+ isLoading: false;
285
+ isFetching: false;
286
+ isSuccess: false;
287
+ isError: false;
288
+ }, "isUninitialized"> & {
289
+ isUninitialized: true;
290
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
291
+ org: string;
292
+ channel?: string;
293
+ status?: string;
294
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
295
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
296
+ isUninitialized: false;
297
+ isLoading: false;
298
+ isFetching: false;
299
+ isSuccess: false;
300
+ isError: false;
301
+ }, {
302
+ isLoading: true;
303
+ isFetching: boolean;
304
+ data: undefined;
305
+ } | ({
306
+ isSuccess: true;
307
+ isFetching: true;
308
+ error: undefined;
309
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
310
+ org: string;
311
+ channel?: string;
312
+ status?: string;
313
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
314
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
315
+ isUninitialized: false;
316
+ isLoading: false;
317
+ isFetching: false;
318
+ isSuccess: false;
319
+ isError: false;
320
+ }, "data" | "fulfilledTimeStamp">>) | ({
321
+ isSuccess: true;
322
+ isFetching: false;
323
+ error: undefined;
324
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
325
+ org: string;
326
+ channel?: string;
327
+ status?: string;
328
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
329
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
330
+ isUninitialized: false;
331
+ isLoading: false;
332
+ isFetching: false;
333
+ isSuccess: false;
334
+ isError: false;
335
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
336
+ isError: true;
337
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
338
+ org: string;
339
+ channel?: string;
340
+ status?: string;
341
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
342
+ currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
343
+ isUninitialized: false;
344
+ isLoading: false;
345
+ isFetching: false;
346
+ isSuccess: false;
347
+ isError: false;
348
+ }, "error">>)>> & {
349
+ status: import("@reduxjs/toolkit/query").QueryStatus;
350
+ }) => R) | undefined;
351
+ }, "skip">) | undefined) => [(arg: {
352
+ org: string;
353
+ channel?: string;
354
+ status?: string;
355
+ }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
356
+ org: string;
357
+ channel?: string;
358
+ status?: string;
359
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
360
+ reset: () => void;
361
+ }, {
362
+ lastArg: {
363
+ org: string;
364
+ channel?: string;
365
+ status?: string;
366
+ };
367
+ }], useGetNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
368
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
369
+ originalArgs?: undefined | undefined;
370
+ data?: undefined | undefined;
371
+ error?: undefined | undefined;
372
+ requestId?: undefined | undefined;
373
+ endpointName?: string | undefined;
374
+ startedTimeStamp?: undefined | undefined;
375
+ fulfilledTimeStamp?: undefined | undefined;
376
+ } & {
377
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
378
+ isUninitialized: false;
379
+ isLoading: false;
380
+ isFetching: false;
381
+ isSuccess: false;
382
+ isError: false;
383
+ }, "isUninitialized"> & {
384
+ isUninitialized: true;
385
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
386
+ org: string;
387
+ channel?: string;
388
+ endDate?: string;
389
+ excludeChannel?: string;
390
+ startDate?: string;
391
+ status?: string;
392
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
393
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
394
+ isUninitialized: false;
395
+ isLoading: false;
396
+ isFetching: false;
397
+ isSuccess: false;
398
+ isError: false;
399
+ }, {
400
+ isLoading: true;
401
+ isFetching: boolean;
402
+ data: undefined;
403
+ } | ({
404
+ isSuccess: true;
405
+ isFetching: true;
406
+ error: undefined;
407
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
408
+ org: string;
409
+ channel?: string;
410
+ endDate?: string;
411
+ excludeChannel?: string;
412
+ startDate?: string;
413
+ status?: string;
414
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
415
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
416
+ isUninitialized: false;
417
+ isLoading: false;
418
+ isFetching: false;
419
+ isSuccess: false;
420
+ isError: false;
421
+ }, "data" | "fulfilledTimeStamp">>) | ({
422
+ isSuccess: true;
423
+ isFetching: false;
424
+ error: undefined;
425
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
426
+ org: string;
427
+ channel?: string;
428
+ endDate?: string;
429
+ excludeChannel?: string;
430
+ startDate?: string;
431
+ status?: string;
432
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
433
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
434
+ isUninitialized: false;
435
+ isLoading: false;
436
+ isFetching: false;
437
+ isSuccess: false;
438
+ isError: false;
439
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
440
+ isError: true;
441
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
442
+ org: string;
443
+ channel?: string;
444
+ endDate?: string;
445
+ excludeChannel?: string;
446
+ startDate?: string;
447
+ status?: string;
448
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
449
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
450
+ isUninitialized: false;
451
+ isLoading: false;
452
+ isFetching: false;
453
+ isSuccess: false;
454
+ isError: false;
455
+ }, "error">>)>> & {
456
+ status: import("@reduxjs/toolkit/query").QueryStatus;
457
+ }>(arg: {
458
+ org: string;
459
+ channel?: string;
460
+ endDate?: string;
461
+ excludeChannel?: string;
462
+ startDate?: string;
463
+ status?: string;
464
+ } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
465
+ skip?: boolean;
466
+ refetchOnMountOrArgChange?: boolean | number;
467
+ } & {
468
+ skip?: boolean;
469
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
470
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
471
+ originalArgs?: undefined | undefined;
472
+ data?: undefined | undefined;
473
+ error?: undefined | undefined;
474
+ requestId?: undefined | undefined;
475
+ endpointName?: string | undefined;
476
+ startedTimeStamp?: undefined | undefined;
477
+ fulfilledTimeStamp?: undefined | undefined;
478
+ } & {
479
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
480
+ isUninitialized: false;
481
+ isLoading: false;
482
+ isFetching: false;
483
+ isSuccess: false;
484
+ isError: false;
485
+ }, "isUninitialized"> & {
486
+ isUninitialized: true;
487
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
488
+ org: string;
489
+ channel?: string;
490
+ endDate?: string;
491
+ excludeChannel?: string;
492
+ startDate?: string;
493
+ status?: string;
494
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
495
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
496
+ isUninitialized: false;
497
+ isLoading: false;
498
+ isFetching: false;
499
+ isSuccess: false;
500
+ isError: false;
501
+ }, {
502
+ isLoading: true;
503
+ isFetching: boolean;
504
+ data: undefined;
505
+ } | ({
506
+ isSuccess: true;
507
+ isFetching: true;
508
+ error: undefined;
509
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
510
+ org: string;
511
+ channel?: string;
512
+ endDate?: string;
513
+ excludeChannel?: string;
514
+ startDate?: string;
515
+ status?: string;
516
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
517
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
518
+ isUninitialized: false;
519
+ isLoading: false;
520
+ isFetching: false;
521
+ isSuccess: false;
522
+ isError: false;
523
+ }, "data" | "fulfilledTimeStamp">>) | ({
524
+ isSuccess: true;
525
+ isFetching: false;
526
+ error: undefined;
527
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
528
+ org: string;
529
+ channel?: string;
530
+ endDate?: string;
531
+ excludeChannel?: string;
532
+ startDate?: string;
533
+ status?: string;
534
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
535
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
536
+ isUninitialized: false;
537
+ isLoading: false;
538
+ isFetching: false;
539
+ isSuccess: false;
540
+ isError: false;
541
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
542
+ isError: true;
543
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
544
+ org: string;
545
+ channel?: string;
546
+ endDate?: string;
547
+ excludeChannel?: string;
548
+ startDate?: string;
549
+ status?: string;
550
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
551
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
552
+ isUninitialized: false;
553
+ isLoading: false;
554
+ isFetching: false;
555
+ isSuccess: false;
556
+ isError: false;
557
+ }, "error">>)>> & {
558
+ status: import("@reduxjs/toolkit/query").QueryStatus;
559
+ }) => R) | undefined;
560
+ }) | undefined) => [R][R extends any ? 0 : never] & {
561
+ refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
562
+ org: string;
563
+ channel?: string;
564
+ endDate?: string;
565
+ excludeChannel?: string;
566
+ startDate?: string;
567
+ status?: string;
568
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>>;
569
+ }, useLazyGetNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
570
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
571
+ originalArgs?: undefined | undefined;
572
+ data?: undefined | undefined;
573
+ error?: undefined | undefined;
574
+ requestId?: undefined | undefined;
575
+ endpointName?: string | undefined;
576
+ startedTimeStamp?: undefined | undefined;
577
+ fulfilledTimeStamp?: undefined | undefined;
578
+ } & {
579
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
580
+ isUninitialized: false;
581
+ isLoading: false;
582
+ isFetching: false;
583
+ isSuccess: false;
584
+ isError: false;
585
+ }, "isUninitialized"> & {
586
+ isUninitialized: true;
587
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
588
+ org: string;
589
+ channel?: string;
590
+ endDate?: string;
591
+ excludeChannel?: string;
592
+ startDate?: string;
593
+ status?: string;
594
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
595
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
596
+ isUninitialized: false;
597
+ isLoading: false;
598
+ isFetching: false;
599
+ isSuccess: false;
600
+ isError: false;
601
+ }, {
602
+ isLoading: true;
603
+ isFetching: boolean;
604
+ data: undefined;
605
+ } | ({
606
+ isSuccess: true;
607
+ isFetching: true;
608
+ error: undefined;
609
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
610
+ org: string;
611
+ channel?: string;
612
+ endDate?: string;
613
+ excludeChannel?: string;
614
+ startDate?: string;
615
+ status?: string;
616
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
617
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
618
+ isUninitialized: false;
619
+ isLoading: false;
620
+ isFetching: false;
621
+ isSuccess: false;
622
+ isError: false;
623
+ }, "data" | "fulfilledTimeStamp">>) | ({
624
+ isSuccess: true;
625
+ isFetching: false;
626
+ error: undefined;
627
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
628
+ org: string;
629
+ channel?: string;
630
+ endDate?: string;
631
+ excludeChannel?: string;
632
+ startDate?: string;
633
+ status?: string;
634
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
635
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
636
+ isUninitialized: false;
637
+ isLoading: false;
638
+ isFetching: false;
639
+ isSuccess: false;
640
+ isError: false;
641
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
642
+ isError: true;
643
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
644
+ org: string;
645
+ channel?: string;
646
+ endDate?: string;
647
+ excludeChannel?: string;
648
+ startDate?: string;
649
+ status?: string;
650
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
651
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
652
+ isUninitialized: false;
653
+ isLoading: false;
654
+ isFetching: false;
655
+ isSuccess: false;
656
+ isError: false;
657
+ }, "error">>)>> & {
658
+ status: import("@reduxjs/toolkit/query").QueryStatus;
659
+ }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
660
+ skip?: boolean;
661
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
662
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
663
+ originalArgs?: undefined | undefined;
664
+ data?: undefined | undefined;
665
+ error?: undefined | undefined;
666
+ requestId?: undefined | undefined;
667
+ endpointName?: string | undefined;
668
+ startedTimeStamp?: undefined | undefined;
669
+ fulfilledTimeStamp?: undefined | undefined;
670
+ } & {
671
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
672
+ isUninitialized: false;
673
+ isLoading: false;
674
+ isFetching: false;
675
+ isSuccess: false;
676
+ isError: false;
677
+ }, "isUninitialized"> & {
678
+ isUninitialized: true;
679
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
680
+ org: string;
681
+ channel?: string;
682
+ endDate?: string;
683
+ excludeChannel?: string;
684
+ startDate?: string;
685
+ status?: string;
686
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
687
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
688
+ isUninitialized: false;
689
+ isLoading: false;
690
+ isFetching: false;
691
+ isSuccess: false;
692
+ isError: false;
693
+ }, {
694
+ isLoading: true;
695
+ isFetching: boolean;
696
+ data: undefined;
697
+ } | ({
698
+ isSuccess: true;
699
+ isFetching: true;
700
+ error: undefined;
701
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
702
+ org: string;
703
+ channel?: string;
704
+ endDate?: string;
705
+ excludeChannel?: string;
706
+ startDate?: string;
707
+ status?: string;
708
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
709
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
710
+ isUninitialized: false;
711
+ isLoading: false;
712
+ isFetching: false;
713
+ isSuccess: false;
714
+ isError: false;
715
+ }, "data" | "fulfilledTimeStamp">>) | ({
716
+ isSuccess: true;
717
+ isFetching: false;
718
+ error: undefined;
719
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
720
+ org: string;
721
+ channel?: string;
722
+ endDate?: string;
723
+ excludeChannel?: string;
724
+ startDate?: string;
725
+ status?: string;
726
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
727
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
728
+ isUninitialized: false;
729
+ isLoading: false;
730
+ isFetching: false;
731
+ isSuccess: false;
732
+ isError: false;
733
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
734
+ isError: true;
735
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
736
+ org: string;
737
+ channel?: string;
738
+ endDate?: string;
739
+ excludeChannel?: string;
740
+ startDate?: string;
741
+ status?: string;
742
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
743
+ currentData?: import("@iblai/iblai-api").Notification | undefined;
744
+ isUninitialized: false;
745
+ isLoading: false;
746
+ isFetching: false;
747
+ isSuccess: false;
748
+ isError: false;
749
+ }, "error">>)>> & {
750
+ status: import("@reduxjs/toolkit/query").QueryStatus;
751
+ }) => R) | undefined;
752
+ }, "skip">) | undefined) => [(arg: {
753
+ org: string;
754
+ channel?: string;
755
+ endDate?: string;
756
+ excludeChannel?: string;
757
+ startDate?: string;
758
+ status?: string;
759
+ }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
760
+ org: string;
761
+ channel?: string;
762
+ endDate?: string;
763
+ excludeChannel?: string;
764
+ startDate?: string;
765
+ status?: string;
766
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
767
+ reset: () => void;
768
+ }, {
769
+ lastArg: {
770
+ org: string;
771
+ channel?: string;
772
+ endDate?: string;
773
+ excludeChannel?: string;
774
+ startDate?: string;
775
+ status?: string;
776
+ };
777
+ }], useMarkAllAsReadMutation: <R extends Record<string, any> = ({
778
+ requestId?: undefined;
779
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
780
+ data?: undefined;
781
+ error?: undefined;
782
+ endpointName?: string;
783
+ startedTimeStamp?: undefined;
784
+ fulfilledTimeStamp?: undefined;
785
+ } & {
786
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
787
+ isUninitialized: true;
788
+ isLoading: false;
789
+ isSuccess: false;
790
+ isError: false;
791
+ }) | ({
792
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
793
+ } & Omit<{
794
+ requestId: string;
795
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
796
+ error?: unknown;
797
+ endpointName: string;
798
+ startedTimeStamp: number;
799
+ fulfilledTimeStamp?: number;
800
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
801
+ requestId: string;
802
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
803
+ error?: unknown;
804
+ endpointName: string;
805
+ startedTimeStamp: number;
806
+ fulfilledTimeStamp?: number;
807
+ }, "data" | "fulfilledTimeStamp">> & {
808
+ error: undefined;
809
+ } & {
810
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
811
+ isUninitialized: false;
812
+ isLoading: false;
813
+ isSuccess: true;
814
+ isError: false;
815
+ }) | ({
816
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
817
+ } & {
818
+ requestId: string;
819
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
820
+ error?: unknown;
821
+ endpointName: string;
822
+ startedTimeStamp: number;
823
+ fulfilledTimeStamp?: number;
824
+ } & {
825
+ data?: undefined;
826
+ } & {
827
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
828
+ isUninitialized: false;
829
+ isLoading: true;
830
+ isSuccess: false;
831
+ isError: false;
832
+ }) | ({
833
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
834
+ } & Omit<{
835
+ requestId: string;
836
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
837
+ error?: unknown;
838
+ endpointName: string;
839
+ startedTimeStamp: number;
840
+ fulfilledTimeStamp?: number;
841
+ }, "error"> & Required<Pick<{
842
+ requestId: string;
843
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
844
+ error?: unknown;
845
+ endpointName: string;
846
+ startedTimeStamp: number;
847
+ fulfilledTimeStamp?: number;
848
+ }, "error">> & {
849
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
850
+ isUninitialized: false;
851
+ isLoading: false;
852
+ isSuccess: false;
853
+ isError: true;
854
+ })>(options?: {
855
+ selectFromResult?: ((state: ({
856
+ requestId?: undefined;
857
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
858
+ data?: undefined;
859
+ error?: undefined;
860
+ endpointName?: string;
861
+ startedTimeStamp?: undefined;
862
+ fulfilledTimeStamp?: undefined;
863
+ } & {
864
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
865
+ isUninitialized: true;
866
+ isLoading: false;
867
+ isSuccess: false;
868
+ isError: false;
869
+ }) | ({
870
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
871
+ } & Omit<{
872
+ requestId: string;
873
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
874
+ error?: unknown;
875
+ endpointName: string;
876
+ startedTimeStamp: number;
877
+ fulfilledTimeStamp?: number;
878
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
879
+ requestId: string;
880
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
881
+ error?: unknown;
882
+ endpointName: string;
883
+ startedTimeStamp: number;
884
+ fulfilledTimeStamp?: number;
885
+ }, "data" | "fulfilledTimeStamp">> & {
886
+ error: undefined;
887
+ } & {
888
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
889
+ isUninitialized: false;
890
+ isLoading: false;
891
+ isSuccess: true;
892
+ isError: false;
893
+ }) | ({
894
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
895
+ } & {
896
+ requestId: string;
897
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
898
+ error?: unknown;
899
+ endpointName: string;
900
+ startedTimeStamp: number;
901
+ fulfilledTimeStamp?: number;
902
+ } & {
903
+ data?: undefined;
904
+ } & {
905
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
906
+ isUninitialized: false;
907
+ isLoading: true;
908
+ isSuccess: false;
909
+ isError: false;
910
+ }) | ({
911
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
912
+ } & Omit<{
913
+ requestId: string;
914
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
915
+ error?: unknown;
916
+ endpointName: string;
917
+ startedTimeStamp: number;
918
+ fulfilledTimeStamp?: number;
919
+ }, "error"> & Required<Pick<{
920
+ requestId: string;
921
+ data?: import("@iblai/iblai-api").MarkAllReadResponse | undefined;
922
+ error?: unknown;
923
+ endpointName: string;
924
+ startedTimeStamp: number;
925
+ fulfilledTimeStamp?: number;
926
+ }, "error">> & {
927
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
928
+ isUninitialized: false;
929
+ isLoading: false;
930
+ isSuccess: false;
931
+ isError: true;
932
+ })) => R) | undefined;
933
+ fixedCacheKey?: string;
934
+ } | undefined) => readonly [(arg: {
935
+ platformKey: string;
936
+ requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
937
+ }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
938
+ platformKey: string;
939
+ requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
940
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "Notifications", import("@iblai/iblai-api").MarkAllReadResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
941
+ originalArgs?: {
942
+ platformKey: string;
943
+ requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
944
+ } | undefined;
945
+ reset: () => void;
946
+ }];