@iblai/data-layer 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +41055 -23773
- package/dist/index.esm.js +5430 -2801
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5515 -2799
- package/dist/index.js.map +1 -1
- package/dist/package.json +10 -7
- package/dist/src/core/index.d.ts +7 -1
- package/dist/src/features/analytics/constants.d.ts +6 -6
- package/dist/src/features/analytics/types.d.ts +9 -0
- package/dist/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/src/features/apps/api-slice.d.ts +72 -24
- package/dist/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/src/features/artifacts/constants.d.ts +42 -0
- package/dist/src/features/artifacts/index.d.ts +3 -0
- package/dist/src/features/artifacts/types.d.ts +37 -0
- package/dist/src/features/auth/types.d.ts +1 -1
- package/dist/src/features/billing/api-slice.d.ts +15 -5
- package/dist/src/features/billing/constants.d.ts +16 -0
- package/dist/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/src/features/billing/types.d.ts +35 -0
- package/dist/src/features/career/api-slice.d.ts +342 -114
- package/dist/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/src/features/chat/api-slice.d.ts +204 -68
- package/dist/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/src/features/core/api-slice.d.ts +1143 -134
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/src/features/credentials/__tests__/custom-api-slice.test.d.ts +1 -0
- package/dist/src/features/credentials/api-slice.d.ts +3706 -146
- package/dist/src/features/credentials/constants.d.ts +9 -1
- package/dist/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/src/features/credentials/types.d.ts +14 -0
- package/dist/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/src/features/index.d.ts +2 -1
- package/dist/src/features/llms/api-slice.d.ts +60 -20
- package/dist/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/src/features/mcp/constants.d.ts +57 -0
- package/dist/src/features/mcp/index.d.ts +3 -0
- package/dist/src/features/mcp/types.d.ts +176 -0
- package/dist/src/features/memory/types.d.ts +1 -0
- package/dist/src/features/mentor/api-slice.d.ts +1789 -473
- package/dist/src/features/mentor/constants.d.ts +7 -1
- package/dist/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/src/features/mentor/types.d.ts +7 -1
- package/dist/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/src/features/platform/types.d.ts +13 -0
- package/dist/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/src/features/reports/api-slice.d.ts +145 -41
- package/dist/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/src/features/search/api-slice.d.ts +117 -39
- package/dist/src/features/search/constants.d.ts +10 -0
- package/dist/src/features/search/types.d.ts +72 -0
- package/dist/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/src/features/skills/api-slice.d.ts +231 -77
- package/dist/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/src/features/tools/api-slice.d.ts +60 -20
- package/dist/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/src/index.d.ts +6 -0
- package/dist/tests/features/billing/constants.test.d.ts +1 -0
- package/dist/tests/features/billing/custom-api-slice.test.d.ts +1 -0
- package/dist/tests/features/billing/types.test.d.ts +1 -0
- package/package.json +10 -7
- package/dist/tsconfig.tsbuildinfo +0 -1
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1
|
+
export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
getNotificationsCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
5
|
org: string;
|
|
4
6
|
channel?: string;
|
|
5
|
-
status?:
|
|
6
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
7
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
8
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
9
|
+
attempt?: number;
|
|
10
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>;
|
|
7
11
|
getNotifications: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
8
12
|
org: string;
|
|
9
13
|
channel?: string;
|
|
@@ -11,22 +15,32 @@ export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api
|
|
|
11
15
|
excludeChannel?: string;
|
|
12
16
|
startDate?: string;
|
|
13
17
|
status?: string;
|
|
14
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
18
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
19
|
+
attempt?: number;
|
|
20
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>;
|
|
15
21
|
markAllAsRead: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
16
22
|
platformKey: string;
|
|
17
23
|
requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
|
|
18
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
24
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
25
|
+
attempt?: number;
|
|
26
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").MarkAllReadResponse, "notificationsApiSlice", any>;
|
|
19
27
|
getNotificationContext: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
20
28
|
platformKey: string;
|
|
21
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
29
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
30
|
+
attempt?: number;
|
|
31
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>;
|
|
22
32
|
createNotificationPreview: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
23
33
|
platformKey: string;
|
|
24
34
|
requestBody: import("@iblai/iblai-api").NotificationPreview;
|
|
25
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
35
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
36
|
+
attempt?: number;
|
|
37
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").PreviewResponse, "notificationsApiSlice", any>;
|
|
26
38
|
sendNotification: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
27
39
|
platformKey: string;
|
|
28
40
|
requestBody: import("@iblai/iblai-api").SendNotification;
|
|
29
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
41
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
42
|
+
attempt?: number;
|
|
43
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").SendResponse, "notificationsApiSlice", any>;
|
|
30
44
|
}, "notificationsApiSlice", "Notifications" | "NotificationBuilder", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
31
45
|
export declare const useGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
32
46
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -49,8 +63,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
49
63
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
50
64
|
org: string;
|
|
51
65
|
channel?: string;
|
|
52
|
-
status?:
|
|
53
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
66
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
67
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
68
|
+
attempt?: number;
|
|
69
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
54
70
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
55
71
|
isUninitialized: false;
|
|
56
72
|
isLoading: false;
|
|
@@ -68,8 +84,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
68
84
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
69
85
|
org: string;
|
|
70
86
|
channel?: string;
|
|
71
|
-
status?:
|
|
72
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
87
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
88
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
89
|
+
attempt?: number;
|
|
90
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
73
91
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
74
92
|
isUninitialized: false;
|
|
75
93
|
isLoading: false;
|
|
@@ -83,8 +101,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
83
101
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
84
102
|
org: string;
|
|
85
103
|
channel?: string;
|
|
86
|
-
status?:
|
|
87
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
104
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
105
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
106
|
+
attempt?: number;
|
|
107
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
88
108
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
89
109
|
isUninitialized: false;
|
|
90
110
|
isLoading: false;
|
|
@@ -96,8 +116,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
96
116
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
97
117
|
org: string;
|
|
98
118
|
channel?: string;
|
|
99
|
-
status?:
|
|
100
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
119
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
120
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
121
|
+
attempt?: number;
|
|
122
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
101
123
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
102
124
|
isUninitialized: false;
|
|
103
125
|
isLoading: false;
|
|
@@ -109,7 +131,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
109
131
|
}>(arg: {
|
|
110
132
|
org: string;
|
|
111
133
|
channel?: string;
|
|
112
|
-
status?:
|
|
134
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
113
135
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
114
136
|
skip?: boolean;
|
|
115
137
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -136,8 +158,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
136
158
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
137
159
|
org: string;
|
|
138
160
|
channel?: string;
|
|
139
|
-
status?:
|
|
140
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
161
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
162
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
163
|
+
attempt?: number;
|
|
164
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
141
165
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
142
166
|
isUninitialized: false;
|
|
143
167
|
isLoading: false;
|
|
@@ -155,8 +179,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
155
179
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
156
180
|
org: string;
|
|
157
181
|
channel?: string;
|
|
158
|
-
status?:
|
|
159
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
182
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
183
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
184
|
+
attempt?: number;
|
|
185
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
160
186
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
161
187
|
isUninitialized: false;
|
|
162
188
|
isLoading: false;
|
|
@@ -170,8 +196,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
170
196
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
171
197
|
org: string;
|
|
172
198
|
channel?: string;
|
|
173
|
-
status?:
|
|
174
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
199
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
200
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
201
|
+
attempt?: number;
|
|
202
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
175
203
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
176
204
|
isUninitialized: false;
|
|
177
205
|
isLoading: false;
|
|
@@ -183,8 +211,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
183
211
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
184
212
|
org: string;
|
|
185
213
|
channel?: string;
|
|
186
|
-
status?:
|
|
187
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
214
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
215
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
216
|
+
attempt?: number;
|
|
217
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
188
218
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
189
219
|
isUninitialized: false;
|
|
190
220
|
isLoading: false;
|
|
@@ -198,8 +228,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
198
228
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
199
229
|
org: string;
|
|
200
230
|
channel?: string;
|
|
201
|
-
status?:
|
|
202
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
231
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
232
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
233
|
+
attempt?: number;
|
|
234
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>>;
|
|
203
235
|
}, useLazyGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
204
236
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
205
237
|
originalArgs?: undefined | undefined;
|
|
@@ -221,8 +253,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
221
253
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
222
254
|
org: string;
|
|
223
255
|
channel?: string;
|
|
224
|
-
status?:
|
|
225
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
256
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
257
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
258
|
+
attempt?: number;
|
|
259
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
226
260
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
227
261
|
isUninitialized: false;
|
|
228
262
|
isLoading: false;
|
|
@@ -240,8 +274,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
240
274
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
241
275
|
org: string;
|
|
242
276
|
channel?: string;
|
|
243
|
-
status?:
|
|
244
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
277
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
278
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
279
|
+
attempt?: number;
|
|
280
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
245
281
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
246
282
|
isUninitialized: false;
|
|
247
283
|
isLoading: false;
|
|
@@ -255,8 +291,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
255
291
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
256
292
|
org: string;
|
|
257
293
|
channel?: string;
|
|
258
|
-
status?:
|
|
259
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
294
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
295
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
296
|
+
attempt?: number;
|
|
297
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
260
298
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
261
299
|
isUninitialized: false;
|
|
262
300
|
isLoading: false;
|
|
@@ -268,8 +306,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
268
306
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
269
307
|
org: string;
|
|
270
308
|
channel?: string;
|
|
271
|
-
status?:
|
|
272
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
309
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
310
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
311
|
+
attempt?: number;
|
|
312
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
273
313
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
274
314
|
isUninitialized: false;
|
|
275
315
|
isLoading: false;
|
|
@@ -301,8 +341,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
301
341
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
302
342
|
org: string;
|
|
303
343
|
channel?: string;
|
|
304
|
-
status?:
|
|
305
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
344
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
345
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
346
|
+
attempt?: number;
|
|
347
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
306
348
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
307
349
|
isUninitialized: false;
|
|
308
350
|
isLoading: false;
|
|
@@ -320,8 +362,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
320
362
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
321
363
|
org: string;
|
|
322
364
|
channel?: string;
|
|
323
|
-
status?:
|
|
324
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
365
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
366
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
367
|
+
attempt?: number;
|
|
368
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
325
369
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
326
370
|
isUninitialized: false;
|
|
327
371
|
isLoading: false;
|
|
@@ -335,8 +379,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
335
379
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
336
380
|
org: string;
|
|
337
381
|
channel?: string;
|
|
338
|
-
status?:
|
|
339
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
382
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
383
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
384
|
+
attempt?: number;
|
|
385
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
340
386
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
341
387
|
isUninitialized: false;
|
|
342
388
|
isLoading: false;
|
|
@@ -348,8 +394,10 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
348
394
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
349
395
|
org: string;
|
|
350
396
|
channel?: string;
|
|
351
|
-
status?:
|
|
352
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
397
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
398
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
399
|
+
attempt?: number;
|
|
400
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>> & {
|
|
353
401
|
currentData?: import("@iblai/iblai-api").NotificationCount | undefined;
|
|
354
402
|
isUninitialized: false;
|
|
355
403
|
isLoading: false;
|
|
@@ -362,18 +410,20 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
362
410
|
}, "skip">) | undefined) => [(arg: {
|
|
363
411
|
org: string;
|
|
364
412
|
channel?: string;
|
|
365
|
-
status?:
|
|
413
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
366
414
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
367
415
|
org: string;
|
|
368
416
|
channel?: string;
|
|
369
|
-
status?:
|
|
370
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
417
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
418
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
419
|
+
attempt?: number;
|
|
420
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").NotificationCount, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
371
421
|
reset: () => void;
|
|
372
422
|
}, {
|
|
373
423
|
lastArg: {
|
|
374
424
|
org: string;
|
|
375
425
|
channel?: string;
|
|
376
|
-
status?:
|
|
426
|
+
status?: "READ" | "UNREAD" | "CANCELLED";
|
|
377
427
|
};
|
|
378
428
|
}], useGetNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
379
429
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -400,7 +450,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
400
450
|
excludeChannel?: string;
|
|
401
451
|
startDate?: string;
|
|
402
452
|
status?: string;
|
|
403
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
453
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
454
|
+
attempt?: number;
|
|
455
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
404
456
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
405
457
|
isUninitialized: false;
|
|
406
458
|
isLoading: false;
|
|
@@ -422,7 +474,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
422
474
|
excludeChannel?: string;
|
|
423
475
|
startDate?: string;
|
|
424
476
|
status?: string;
|
|
425
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
477
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
478
|
+
attempt?: number;
|
|
479
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
426
480
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
427
481
|
isUninitialized: false;
|
|
428
482
|
isLoading: false;
|
|
@@ -440,7 +494,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
440
494
|
excludeChannel?: string;
|
|
441
495
|
startDate?: string;
|
|
442
496
|
status?: string;
|
|
443
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
497
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
498
|
+
attempt?: number;
|
|
499
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
444
500
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
445
501
|
isUninitialized: false;
|
|
446
502
|
isLoading: false;
|
|
@@ -456,7 +512,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
456
512
|
excludeChannel?: string;
|
|
457
513
|
startDate?: string;
|
|
458
514
|
status?: string;
|
|
459
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
515
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
516
|
+
attempt?: number;
|
|
517
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
460
518
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
461
519
|
isUninitialized: false;
|
|
462
520
|
isLoading: false;
|
|
@@ -502,7 +560,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
502
560
|
excludeChannel?: string;
|
|
503
561
|
startDate?: string;
|
|
504
562
|
status?: string;
|
|
505
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
563
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
564
|
+
attempt?: number;
|
|
565
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
506
566
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
507
567
|
isUninitialized: false;
|
|
508
568
|
isLoading: false;
|
|
@@ -524,7 +584,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
524
584
|
excludeChannel?: string;
|
|
525
585
|
startDate?: string;
|
|
526
586
|
status?: string;
|
|
527
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
587
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
588
|
+
attempt?: number;
|
|
589
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
528
590
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
529
591
|
isUninitialized: false;
|
|
530
592
|
isLoading: false;
|
|
@@ -542,7 +604,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
542
604
|
excludeChannel?: string;
|
|
543
605
|
startDate?: string;
|
|
544
606
|
status?: string;
|
|
545
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
607
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
608
|
+
attempt?: number;
|
|
609
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
546
610
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
547
611
|
isUninitialized: false;
|
|
548
612
|
isLoading: false;
|
|
@@ -558,7 +622,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
558
622
|
excludeChannel?: string;
|
|
559
623
|
startDate?: string;
|
|
560
624
|
status?: string;
|
|
561
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
625
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
626
|
+
attempt?: number;
|
|
627
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
562
628
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
563
629
|
isUninitialized: false;
|
|
564
630
|
isLoading: false;
|
|
@@ -576,7 +642,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
576
642
|
excludeChannel?: string;
|
|
577
643
|
startDate?: string;
|
|
578
644
|
status?: string;
|
|
579
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
645
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
646
|
+
attempt?: number;
|
|
647
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>>;
|
|
580
648
|
}, useLazyGetNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
581
649
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
582
650
|
originalArgs?: undefined | undefined;
|
|
@@ -602,7 +670,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
602
670
|
excludeChannel?: string;
|
|
603
671
|
startDate?: string;
|
|
604
672
|
status?: string;
|
|
605
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
673
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
674
|
+
attempt?: number;
|
|
675
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
606
676
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
607
677
|
isUninitialized: false;
|
|
608
678
|
isLoading: false;
|
|
@@ -624,7 +694,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
624
694
|
excludeChannel?: string;
|
|
625
695
|
startDate?: string;
|
|
626
696
|
status?: string;
|
|
627
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
697
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
698
|
+
attempt?: number;
|
|
699
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
628
700
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
629
701
|
isUninitialized: false;
|
|
630
702
|
isLoading: false;
|
|
@@ -642,7 +714,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
642
714
|
excludeChannel?: string;
|
|
643
715
|
startDate?: string;
|
|
644
716
|
status?: string;
|
|
645
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
717
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
718
|
+
attempt?: number;
|
|
719
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
646
720
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
647
721
|
isUninitialized: false;
|
|
648
722
|
isLoading: false;
|
|
@@ -658,7 +732,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
658
732
|
excludeChannel?: string;
|
|
659
733
|
startDate?: string;
|
|
660
734
|
status?: string;
|
|
661
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
735
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
736
|
+
attempt?: number;
|
|
737
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
662
738
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
663
739
|
isUninitialized: false;
|
|
664
740
|
isLoading: false;
|
|
@@ -694,7 +770,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
694
770
|
excludeChannel?: string;
|
|
695
771
|
startDate?: string;
|
|
696
772
|
status?: string;
|
|
697
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
773
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
774
|
+
attempt?: number;
|
|
775
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
698
776
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
699
777
|
isUninitialized: false;
|
|
700
778
|
isLoading: false;
|
|
@@ -716,7 +794,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
716
794
|
excludeChannel?: string;
|
|
717
795
|
startDate?: string;
|
|
718
796
|
status?: string;
|
|
719
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
797
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
798
|
+
attempt?: number;
|
|
799
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
720
800
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
721
801
|
isUninitialized: false;
|
|
722
802
|
isLoading: false;
|
|
@@ -734,7 +814,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
734
814
|
excludeChannel?: string;
|
|
735
815
|
startDate?: string;
|
|
736
816
|
status?: string;
|
|
737
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
817
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
818
|
+
attempt?: number;
|
|
819
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
738
820
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
739
821
|
isUninitialized: false;
|
|
740
822
|
isLoading: false;
|
|
@@ -750,7 +832,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
750
832
|
excludeChannel?: string;
|
|
751
833
|
startDate?: string;
|
|
752
834
|
status?: string;
|
|
753
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
835
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
836
|
+
attempt?: number;
|
|
837
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>> & {
|
|
754
838
|
currentData?: import("@iblai/iblai-api").Notification | undefined;
|
|
755
839
|
isUninitialized: false;
|
|
756
840
|
isLoading: false;
|
|
@@ -774,7 +858,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
774
858
|
excludeChannel?: string;
|
|
775
859
|
startDate?: string;
|
|
776
860
|
status?: string;
|
|
777
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
861
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
862
|
+
attempt?: number;
|
|
863
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").Notification, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
778
864
|
reset: () => void;
|
|
779
865
|
}, {
|
|
780
866
|
lastArg: {
|
|
@@ -948,7 +1034,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
948
1034
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
949
1035
|
platformKey: string;
|
|
950
1036
|
requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
|
|
951
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1037
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1038
|
+
attempt?: number;
|
|
1039
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").MarkAllReadResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
952
1040
|
originalArgs?: {
|
|
953
1041
|
platformKey: string;
|
|
954
1042
|
requestBody?: import("@iblai/iblai-api").MarkAllReadRequest;
|
|
@@ -974,7 +1062,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
974
1062
|
isUninitialized: true;
|
|
975
1063
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
976
1064
|
platformKey: string;
|
|
977
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1065
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1066
|
+
attempt?: number;
|
|
1067
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
978
1068
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
979
1069
|
isUninitialized: false;
|
|
980
1070
|
isLoading: false;
|
|
@@ -991,7 +1081,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
991
1081
|
error: undefined;
|
|
992
1082
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
993
1083
|
platformKey: string;
|
|
994
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1084
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1085
|
+
attempt?: number;
|
|
1086
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
995
1087
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
996
1088
|
isUninitialized: false;
|
|
997
1089
|
isLoading: false;
|
|
@@ -1004,7 +1096,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1004
1096
|
error: undefined;
|
|
1005
1097
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1006
1098
|
platformKey: string;
|
|
1007
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1099
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1100
|
+
attempt?: number;
|
|
1101
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1008
1102
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1009
1103
|
isUninitialized: false;
|
|
1010
1104
|
isLoading: false;
|
|
@@ -1015,7 +1109,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1015
1109
|
isError: true;
|
|
1016
1110
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1017
1111
|
platformKey: string;
|
|
1018
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1112
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1113
|
+
attempt?: number;
|
|
1114
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1019
1115
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1020
1116
|
isUninitialized: false;
|
|
1021
1117
|
isLoading: false;
|
|
@@ -1051,7 +1147,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1051
1147
|
isUninitialized: true;
|
|
1052
1148
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1053
1149
|
platformKey: string;
|
|
1054
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1150
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1151
|
+
attempt?: number;
|
|
1152
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1055
1153
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1056
1154
|
isUninitialized: false;
|
|
1057
1155
|
isLoading: false;
|
|
@@ -1068,7 +1166,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1068
1166
|
error: undefined;
|
|
1069
1167
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1070
1168
|
platformKey: string;
|
|
1071
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1169
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1170
|
+
attempt?: number;
|
|
1171
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1072
1172
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1073
1173
|
isUninitialized: false;
|
|
1074
1174
|
isLoading: false;
|
|
@@ -1081,7 +1181,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1081
1181
|
error: undefined;
|
|
1082
1182
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1083
1183
|
platformKey: string;
|
|
1084
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1184
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1185
|
+
attempt?: number;
|
|
1186
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1085
1187
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1086
1188
|
isUninitialized: false;
|
|
1087
1189
|
isLoading: false;
|
|
@@ -1092,7 +1194,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1092
1194
|
isError: true;
|
|
1093
1195
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1094
1196
|
platformKey: string;
|
|
1095
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1197
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1198
|
+
attempt?: number;
|
|
1199
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1096
1200
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1097
1201
|
isUninitialized: false;
|
|
1098
1202
|
isLoading: false;
|
|
@@ -1105,7 +1209,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1105
1209
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1106
1210
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1107
1211
|
platformKey: string;
|
|
1108
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1212
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1213
|
+
attempt?: number;
|
|
1214
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>>;
|
|
1109
1215
|
}, useLazyGetNotificationContextQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1110
1216
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1111
1217
|
originalArgs?: undefined | undefined;
|
|
@@ -1126,7 +1232,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1126
1232
|
isUninitialized: true;
|
|
1127
1233
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1128
1234
|
platformKey: string;
|
|
1129
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1235
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1236
|
+
attempt?: number;
|
|
1237
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1130
1238
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1131
1239
|
isUninitialized: false;
|
|
1132
1240
|
isLoading: false;
|
|
@@ -1143,7 +1251,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1143
1251
|
error: undefined;
|
|
1144
1252
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1145
1253
|
platformKey: string;
|
|
1146
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1254
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1255
|
+
attempt?: number;
|
|
1256
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1147
1257
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1148
1258
|
isUninitialized: false;
|
|
1149
1259
|
isLoading: false;
|
|
@@ -1156,7 +1266,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1156
1266
|
error: undefined;
|
|
1157
1267
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1158
1268
|
platformKey: string;
|
|
1159
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1269
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1270
|
+
attempt?: number;
|
|
1271
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1160
1272
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1161
1273
|
isUninitialized: false;
|
|
1162
1274
|
isLoading: false;
|
|
@@ -1167,7 +1279,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1167
1279
|
isError: true;
|
|
1168
1280
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1169
1281
|
platformKey: string;
|
|
1170
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1282
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1283
|
+
attempt?: number;
|
|
1284
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1171
1285
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1172
1286
|
isUninitialized: false;
|
|
1173
1287
|
isLoading: false;
|
|
@@ -1198,7 +1312,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1198
1312
|
isUninitialized: true;
|
|
1199
1313
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1200
1314
|
platformKey: string;
|
|
1201
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1315
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1316
|
+
attempt?: number;
|
|
1317
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1202
1318
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1203
1319
|
isUninitialized: false;
|
|
1204
1320
|
isLoading: false;
|
|
@@ -1215,7 +1331,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1215
1331
|
error: undefined;
|
|
1216
1332
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1217
1333
|
platformKey: string;
|
|
1218
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1334
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1335
|
+
attempt?: number;
|
|
1336
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1219
1337
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1220
1338
|
isUninitialized: false;
|
|
1221
1339
|
isLoading: false;
|
|
@@ -1228,7 +1346,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1228
1346
|
error: undefined;
|
|
1229
1347
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1230
1348
|
platformKey: string;
|
|
1231
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1349
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1350
|
+
attempt?: number;
|
|
1351
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1232
1352
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1233
1353
|
isUninitialized: false;
|
|
1234
1354
|
isLoading: false;
|
|
@@ -1239,7 +1359,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1239
1359
|
isError: true;
|
|
1240
1360
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1241
1361
|
platformKey: string;
|
|
1242
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1362
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1363
|
+
attempt?: number;
|
|
1364
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1243
1365
|
currentData?: import("@iblai/iblai-api").ContextResponse | undefined;
|
|
1244
1366
|
isUninitialized: false;
|
|
1245
1367
|
isLoading: false;
|
|
@@ -1253,7 +1375,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1253
1375
|
platformKey: string;
|
|
1254
1376
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1255
1377
|
platformKey: string;
|
|
1256
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1378
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1379
|
+
attempt?: number;
|
|
1380
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").ContextResponse, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1257
1381
|
reset: () => void;
|
|
1258
1382
|
}, {
|
|
1259
1383
|
lastArg: {
|
|
@@ -1422,7 +1546,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1422
1546
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1423
1547
|
platformKey: string;
|
|
1424
1548
|
requestBody: import("@iblai/iblai-api").NotificationPreview;
|
|
1425
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1549
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1550
|
+
attempt?: number;
|
|
1551
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").PreviewResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1426
1552
|
originalArgs?: {
|
|
1427
1553
|
platformKey: string;
|
|
1428
1554
|
requestBody: import("@iblai/iblai-api").NotificationPreview;
|
|
@@ -1591,7 +1717,9 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
1591
1717
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1592
1718
|
platformKey: string;
|
|
1593
1719
|
requestBody: import("@iblai/iblai-api").SendNotification;
|
|
1594
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1720
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1721
|
+
attempt?: number;
|
|
1722
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("@iblai/iblai-api").SendResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1595
1723
|
originalArgs?: {
|
|
1596
1724
|
platformKey: string;
|
|
1597
1725
|
requestBody: import("@iblai/iblai-api").SendNotification;
|