@iblai/web-utils 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-layer/src/core/index.d.ts +2 -1
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
- package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
- package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
- package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
- package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
- package/dist/data-layer/src/features/auth/types.d.ts +20 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
- package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
- package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
- package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
- package/dist/data-layer/src/features/core/constants.d.ts +40 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/data-layer/src/features/core/types.d.ts +27 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
- package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
- package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
- package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
- package/dist/data-layer/src/features/memory/types.d.ts +122 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
- package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
- package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
- package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
- package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
- package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/data-layer/src/features/platform/types.d.ts +48 -0
- package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
- package/dist/data-layer/src/features/projects/types.d.ts +79 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
- package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
- package/dist/data-layer/src/features/search/constants.d.ts +31 -0
- package/dist/data-layer/src/features/search/types.d.ts +89 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
- package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
- package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
- package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
- package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
- package/dist/data-layer/src/features/user/constants.d.ts +3 -1
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/utils.d.ts +8 -5
- package/dist/data-layer/src/index.d.ts +75 -47
- package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
- package/dist/data-layer/src/services/StorageService.d.ts +1 -1
- package/dist/index.d.ts +1021 -5
- package/dist/index.esm.js +3299 -453
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3305 -448
- package/dist/index.js.map +1 -1
- package/dist/package.json +34 -18
- package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
- package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
- package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +10 -0
- package/dist/web-utils/src/index.web.d.ts +12 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
- package/dist/web-utils/src/types/index.d.ts +9 -0
- package/dist/web-utils/src/utils/constants.d.ts +4 -0
- package/dist/web-utils/src/utils/helpers.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +7 -0
- package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +37 -22
- package/dist/features/chat/slice.d.ts +0 -59
- package/dist/features/index.d.ts +0 -1
- package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
- package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
- package/dist/hooks/chat/use-chat.d.ts +0 -52
- package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
- package/dist/hooks/index.d.ts +0 -10
- package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
- package/dist/hooks/subscription/constants.d.ts +0 -4
- package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
- package/dist/hooks/subscription-v2/constants.d.ts +0 -5
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
- package/dist/hooks/use-day-js.d.ts +0 -7
- package/dist/providers/auth-provider.d.ts +0 -63
- package/dist/providers/index.d.ts +0 -3
- package/dist/providers/mentor-provider.d.ts +0 -40
- package/dist/providers/tenant-provider.d.ts +0 -60
- package/dist/types/chat.d.ts +0 -1
- package/dist/types/index.d.ts +0 -55
- package/dist/types/subscription.d.ts +0 -18
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/data/advanced-tab.d.ts +0 -62
- package/dist/utils/helpers.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -3
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
2
|
getNotificationsCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
channel?: string;
|
|
5
5
|
status?: string;
|
|
6
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
6
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>;
|
|
7
7
|
getNotifications: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
8
8
|
org: string;
|
|
9
9
|
channel?: string;
|
|
@@ -11,12 +11,23 @@ export declare const notificationsApiSlice: import("@reduxjs/toolkit/query").Api
|
|
|
11
11
|
excludeChannel?: string;
|
|
12
12
|
startDate?: string;
|
|
13
13
|
status?: string;
|
|
14
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
14
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>;
|
|
15
15
|
markAllAsRead: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
16
16
|
platformKey: string;
|
|
17
|
-
requestBody?: import("
|
|
18
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
19
|
-
|
|
17
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadRequest;
|
|
18
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse, "notificationsApiSlice", any>;
|
|
19
|
+
getNotificationContext: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
20
|
+
platformKey: string;
|
|
21
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>;
|
|
22
|
+
createNotificationPreview: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
23
|
+
platformKey: string;
|
|
24
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").NotificationPreview;
|
|
25
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse, "notificationsApiSlice", any>;
|
|
26
|
+
sendNotification: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
27
|
+
platformKey: string;
|
|
28
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SendNotification;
|
|
29
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").SendResponse, "notificationsApiSlice", any>;
|
|
30
|
+
}, "notificationsApiSlice", "Notifications" | "NotificationBuilder", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
20
31
|
export declare const useGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
21
32
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
22
33
|
originalArgs?: undefined | undefined;
|
|
@@ -27,7 +38,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
27
38
|
startedTimeStamp?: undefined | undefined;
|
|
28
39
|
fulfilledTimeStamp?: undefined | undefined;
|
|
29
40
|
} & {
|
|
30
|
-
currentData?: import("
|
|
41
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
31
42
|
isUninitialized: false;
|
|
32
43
|
isLoading: false;
|
|
33
44
|
isFetching: false;
|
|
@@ -39,8 +50,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
39
50
|
org: string;
|
|
40
51
|
channel?: string;
|
|
41
52
|
status?: string;
|
|
42
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
43
|
-
currentData?: import("
|
|
53
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
54
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
44
55
|
isUninitialized: false;
|
|
45
56
|
isLoading: false;
|
|
46
57
|
isFetching: false;
|
|
@@ -58,8 +69,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
58
69
|
org: string;
|
|
59
70
|
channel?: string;
|
|
60
71
|
status?: string;
|
|
61
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
62
|
-
currentData?: import("
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
73
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
63
74
|
isUninitialized: false;
|
|
64
75
|
isLoading: false;
|
|
65
76
|
isFetching: false;
|
|
@@ -73,8 +84,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
73
84
|
org: string;
|
|
74
85
|
channel?: string;
|
|
75
86
|
status?: string;
|
|
76
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
77
|
-
currentData?: import("
|
|
87
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
88
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
78
89
|
isUninitialized: false;
|
|
79
90
|
isLoading: false;
|
|
80
91
|
isFetching: false;
|
|
@@ -86,8 +97,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
86
97
|
org: string;
|
|
87
98
|
channel?: string;
|
|
88
99
|
status?: string;
|
|
89
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
90
|
-
currentData?: import("
|
|
100
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
101
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
91
102
|
isUninitialized: false;
|
|
92
103
|
isLoading: false;
|
|
93
104
|
isFetching: false;
|
|
@@ -114,7 +125,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
114
125
|
startedTimeStamp?: undefined | undefined;
|
|
115
126
|
fulfilledTimeStamp?: undefined | undefined;
|
|
116
127
|
} & {
|
|
117
|
-
currentData?: import("
|
|
128
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
118
129
|
isUninitialized: false;
|
|
119
130
|
isLoading: false;
|
|
120
131
|
isFetching: false;
|
|
@@ -126,8 +137,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
126
137
|
org: string;
|
|
127
138
|
channel?: string;
|
|
128
139
|
status?: string;
|
|
129
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
130
|
-
currentData?: import("
|
|
140
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
141
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
131
142
|
isUninitialized: false;
|
|
132
143
|
isLoading: false;
|
|
133
144
|
isFetching: false;
|
|
@@ -145,8 +156,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
145
156
|
org: string;
|
|
146
157
|
channel?: string;
|
|
147
158
|
status?: string;
|
|
148
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
149
|
-
currentData?: import("
|
|
159
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
160
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
150
161
|
isUninitialized: false;
|
|
151
162
|
isLoading: false;
|
|
152
163
|
isFetching: false;
|
|
@@ -160,8 +171,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
160
171
|
org: string;
|
|
161
172
|
channel?: string;
|
|
162
173
|
status?: string;
|
|
163
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
164
|
-
currentData?: import("
|
|
174
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
175
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
165
176
|
isUninitialized: false;
|
|
166
177
|
isLoading: false;
|
|
167
178
|
isFetching: false;
|
|
@@ -173,8 +184,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
173
184
|
org: string;
|
|
174
185
|
channel?: string;
|
|
175
186
|
status?: string;
|
|
176
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
177
|
-
currentData?: import("
|
|
187
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
188
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
178
189
|
isUninitialized: false;
|
|
179
190
|
isLoading: false;
|
|
180
191
|
isFetching: false;
|
|
@@ -188,7 +199,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
188
199
|
org: string;
|
|
189
200
|
channel?: string;
|
|
190
201
|
status?: string;
|
|
191
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
202
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>>;
|
|
192
203
|
}, useLazyGetNotificationsCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
193
204
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
194
205
|
originalArgs?: undefined | undefined;
|
|
@@ -199,7 +210,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
199
210
|
startedTimeStamp?: undefined | undefined;
|
|
200
211
|
fulfilledTimeStamp?: undefined | undefined;
|
|
201
212
|
} & {
|
|
202
|
-
currentData?: import("
|
|
213
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
203
214
|
isUninitialized: false;
|
|
204
215
|
isLoading: false;
|
|
205
216
|
isFetching: false;
|
|
@@ -211,8 +222,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
211
222
|
org: string;
|
|
212
223
|
channel?: string;
|
|
213
224
|
status?: string;
|
|
214
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
215
|
-
currentData?: import("
|
|
225
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
226
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
216
227
|
isUninitialized: false;
|
|
217
228
|
isLoading: false;
|
|
218
229
|
isFetching: false;
|
|
@@ -230,8 +241,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
230
241
|
org: string;
|
|
231
242
|
channel?: string;
|
|
232
243
|
status?: string;
|
|
233
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
234
|
-
currentData?: import("
|
|
244
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
245
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
235
246
|
isUninitialized: false;
|
|
236
247
|
isLoading: false;
|
|
237
248
|
isFetching: false;
|
|
@@ -245,8 +256,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
245
256
|
org: string;
|
|
246
257
|
channel?: string;
|
|
247
258
|
status?: string;
|
|
248
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
249
|
-
currentData?: import("
|
|
259
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
260
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
250
261
|
isUninitialized: false;
|
|
251
262
|
isLoading: false;
|
|
252
263
|
isFetching: false;
|
|
@@ -258,8 +269,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
258
269
|
org: string;
|
|
259
270
|
channel?: string;
|
|
260
271
|
status?: string;
|
|
261
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
262
|
-
currentData?: import("
|
|
272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
273
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
263
274
|
isUninitialized: false;
|
|
264
275
|
isLoading: false;
|
|
265
276
|
isFetching: false;
|
|
@@ -279,7 +290,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
279
290
|
startedTimeStamp?: undefined | undefined;
|
|
280
291
|
fulfilledTimeStamp?: undefined | undefined;
|
|
281
292
|
} & {
|
|
282
|
-
currentData?: import("
|
|
293
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
283
294
|
isUninitialized: false;
|
|
284
295
|
isLoading: false;
|
|
285
296
|
isFetching: false;
|
|
@@ -291,8 +302,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
291
302
|
org: string;
|
|
292
303
|
channel?: string;
|
|
293
304
|
status?: string;
|
|
294
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
295
|
-
currentData?: import("
|
|
305
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
306
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
296
307
|
isUninitialized: false;
|
|
297
308
|
isLoading: false;
|
|
298
309
|
isFetching: false;
|
|
@@ -310,8 +321,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
310
321
|
org: string;
|
|
311
322
|
channel?: string;
|
|
312
323
|
status?: string;
|
|
313
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
314
|
-
currentData?: import("
|
|
324
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
325
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
315
326
|
isUninitialized: false;
|
|
316
327
|
isLoading: false;
|
|
317
328
|
isFetching: false;
|
|
@@ -325,8 +336,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
325
336
|
org: string;
|
|
326
337
|
channel?: string;
|
|
327
338
|
status?: string;
|
|
328
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
329
|
-
currentData?: import("
|
|
339
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
340
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
330
341
|
isUninitialized: false;
|
|
331
342
|
isLoading: false;
|
|
332
343
|
isFetching: false;
|
|
@@ -338,8 +349,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
338
349
|
org: string;
|
|
339
350
|
channel?: string;
|
|
340
351
|
status?: string;
|
|
341
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
342
|
-
currentData?: import("
|
|
352
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>> & {
|
|
353
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").NotificationCount | undefined;
|
|
343
354
|
isUninitialized: false;
|
|
344
355
|
isLoading: false;
|
|
345
356
|
isFetching: false;
|
|
@@ -356,7 +367,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
356
367
|
org: string;
|
|
357
368
|
channel?: string;
|
|
358
369
|
status?: string;
|
|
359
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
370
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").NotificationCount, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
360
371
|
reset: () => void;
|
|
361
372
|
}, {
|
|
362
373
|
lastArg: {
|
|
@@ -374,7 +385,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
374
385
|
startedTimeStamp?: undefined | undefined;
|
|
375
386
|
fulfilledTimeStamp?: undefined | undefined;
|
|
376
387
|
} & {
|
|
377
|
-
currentData?: import("
|
|
388
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
378
389
|
isUninitialized: false;
|
|
379
390
|
isLoading: false;
|
|
380
391
|
isFetching: false;
|
|
@@ -389,8 +400,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
389
400
|
excludeChannel?: string;
|
|
390
401
|
startDate?: string;
|
|
391
402
|
status?: string;
|
|
392
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
393
|
-
currentData?: import("
|
|
403
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
404
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
394
405
|
isUninitialized: false;
|
|
395
406
|
isLoading: false;
|
|
396
407
|
isFetching: false;
|
|
@@ -411,8 +422,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
411
422
|
excludeChannel?: string;
|
|
412
423
|
startDate?: string;
|
|
413
424
|
status?: string;
|
|
414
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
415
|
-
currentData?: import("
|
|
425
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
426
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
416
427
|
isUninitialized: false;
|
|
417
428
|
isLoading: false;
|
|
418
429
|
isFetching: false;
|
|
@@ -429,8 +440,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
429
440
|
excludeChannel?: string;
|
|
430
441
|
startDate?: string;
|
|
431
442
|
status?: string;
|
|
432
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
433
|
-
currentData?: import("
|
|
443
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
444
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
434
445
|
isUninitialized: false;
|
|
435
446
|
isLoading: false;
|
|
436
447
|
isFetching: false;
|
|
@@ -445,8 +456,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
445
456
|
excludeChannel?: string;
|
|
446
457
|
startDate?: string;
|
|
447
458
|
status?: string;
|
|
448
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
449
|
-
currentData?: import("
|
|
459
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
460
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
450
461
|
isUninitialized: false;
|
|
451
462
|
isLoading: false;
|
|
452
463
|
isFetching: false;
|
|
@@ -476,7 +487,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
476
487
|
startedTimeStamp?: undefined | undefined;
|
|
477
488
|
fulfilledTimeStamp?: undefined | undefined;
|
|
478
489
|
} & {
|
|
479
|
-
currentData?: import("
|
|
490
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
480
491
|
isUninitialized: false;
|
|
481
492
|
isLoading: false;
|
|
482
493
|
isFetching: false;
|
|
@@ -491,8 +502,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
491
502
|
excludeChannel?: string;
|
|
492
503
|
startDate?: string;
|
|
493
504
|
status?: string;
|
|
494
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
495
|
-
currentData?: import("
|
|
505
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
506
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
496
507
|
isUninitialized: false;
|
|
497
508
|
isLoading: false;
|
|
498
509
|
isFetching: false;
|
|
@@ -513,8 +524,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
513
524
|
excludeChannel?: string;
|
|
514
525
|
startDate?: string;
|
|
515
526
|
status?: string;
|
|
516
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
517
|
-
currentData?: import("
|
|
527
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
528
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
518
529
|
isUninitialized: false;
|
|
519
530
|
isLoading: false;
|
|
520
531
|
isFetching: false;
|
|
@@ -531,8 +542,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
531
542
|
excludeChannel?: string;
|
|
532
543
|
startDate?: string;
|
|
533
544
|
status?: string;
|
|
534
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
535
|
-
currentData?: import("
|
|
545
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
546
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
536
547
|
isUninitialized: false;
|
|
537
548
|
isLoading: false;
|
|
538
549
|
isFetching: false;
|
|
@@ -547,8 +558,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
547
558
|
excludeChannel?: string;
|
|
548
559
|
startDate?: string;
|
|
549
560
|
status?: string;
|
|
550
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
551
|
-
currentData?: import("
|
|
561
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
562
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
552
563
|
isUninitialized: false;
|
|
553
564
|
isLoading: false;
|
|
554
565
|
isFetching: false;
|
|
@@ -565,7 +576,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
565
576
|
excludeChannel?: string;
|
|
566
577
|
startDate?: string;
|
|
567
578
|
status?: string;
|
|
568
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
579
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>>;
|
|
569
580
|
}, useLazyGetNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
570
581
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
571
582
|
originalArgs?: undefined | undefined;
|
|
@@ -576,7 +587,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
576
587
|
startedTimeStamp?: undefined | undefined;
|
|
577
588
|
fulfilledTimeStamp?: undefined | undefined;
|
|
578
589
|
} & {
|
|
579
|
-
currentData?: import("
|
|
590
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
580
591
|
isUninitialized: false;
|
|
581
592
|
isLoading: false;
|
|
582
593
|
isFetching: false;
|
|
@@ -591,8 +602,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
591
602
|
excludeChannel?: string;
|
|
592
603
|
startDate?: string;
|
|
593
604
|
status?: string;
|
|
594
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
595
|
-
currentData?: import("
|
|
605
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
606
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
596
607
|
isUninitialized: false;
|
|
597
608
|
isLoading: false;
|
|
598
609
|
isFetching: false;
|
|
@@ -613,8 +624,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
613
624
|
excludeChannel?: string;
|
|
614
625
|
startDate?: string;
|
|
615
626
|
status?: string;
|
|
616
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
617
|
-
currentData?: import("
|
|
627
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
628
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
618
629
|
isUninitialized: false;
|
|
619
630
|
isLoading: false;
|
|
620
631
|
isFetching: false;
|
|
@@ -631,8 +642,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
631
642
|
excludeChannel?: string;
|
|
632
643
|
startDate?: string;
|
|
633
644
|
status?: string;
|
|
634
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
635
|
-
currentData?: import("
|
|
645
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
646
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
636
647
|
isUninitialized: false;
|
|
637
648
|
isLoading: false;
|
|
638
649
|
isFetching: false;
|
|
@@ -647,8 +658,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
647
658
|
excludeChannel?: string;
|
|
648
659
|
startDate?: string;
|
|
649
660
|
status?: string;
|
|
650
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
651
|
-
currentData?: import("
|
|
661
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
662
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
652
663
|
isUninitialized: false;
|
|
653
664
|
isLoading: false;
|
|
654
665
|
isFetching: false;
|
|
@@ -668,7 +679,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
668
679
|
startedTimeStamp?: undefined | undefined;
|
|
669
680
|
fulfilledTimeStamp?: undefined | undefined;
|
|
670
681
|
} & {
|
|
671
|
-
currentData?: import("
|
|
682
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
672
683
|
isUninitialized: false;
|
|
673
684
|
isLoading: false;
|
|
674
685
|
isFetching: false;
|
|
@@ -683,8 +694,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
683
694
|
excludeChannel?: string;
|
|
684
695
|
startDate?: string;
|
|
685
696
|
status?: string;
|
|
686
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
687
|
-
currentData?: import("
|
|
697
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
698
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
688
699
|
isUninitialized: false;
|
|
689
700
|
isLoading: false;
|
|
690
701
|
isFetching: false;
|
|
@@ -705,8 +716,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
705
716
|
excludeChannel?: string;
|
|
706
717
|
startDate?: string;
|
|
707
718
|
status?: string;
|
|
708
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
709
|
-
currentData?: import("
|
|
719
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
720
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
710
721
|
isUninitialized: false;
|
|
711
722
|
isLoading: false;
|
|
712
723
|
isFetching: false;
|
|
@@ -723,8 +734,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
723
734
|
excludeChannel?: string;
|
|
724
735
|
startDate?: string;
|
|
725
736
|
status?: string;
|
|
726
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
727
|
-
currentData?: import("
|
|
737
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
738
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
728
739
|
isUninitialized: false;
|
|
729
740
|
isLoading: false;
|
|
730
741
|
isFetching: false;
|
|
@@ -739,8 +750,8 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
739
750
|
excludeChannel?: string;
|
|
740
751
|
startDate?: string;
|
|
741
752
|
status?: string;
|
|
742
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
743
|
-
currentData?: import("
|
|
753
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>> & {
|
|
754
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Notification | undefined;
|
|
744
755
|
isUninitialized: false;
|
|
745
756
|
isLoading: false;
|
|
746
757
|
isFetching: false;
|
|
@@ -763,7 +774,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
763
774
|
excludeChannel?: string;
|
|
764
775
|
startDate?: string;
|
|
765
776
|
status?: string;
|
|
766
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
777
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").Notification, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
767
778
|
reset: () => void;
|
|
768
779
|
}, {
|
|
769
780
|
lastArg: {
|
|
@@ -792,14 +803,657 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
792
803
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
793
804
|
} & Omit<{
|
|
794
805
|
requestId: string;
|
|
795
|
-
data?: import("
|
|
806
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
807
|
+
error?: unknown;
|
|
808
|
+
endpointName: string;
|
|
809
|
+
startedTimeStamp: number;
|
|
810
|
+
fulfilledTimeStamp?: number;
|
|
811
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
812
|
+
requestId: string;
|
|
813
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
814
|
+
error?: unknown;
|
|
815
|
+
endpointName: string;
|
|
816
|
+
startedTimeStamp: number;
|
|
817
|
+
fulfilledTimeStamp?: number;
|
|
818
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
819
|
+
error: undefined;
|
|
820
|
+
} & {
|
|
821
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
822
|
+
isUninitialized: false;
|
|
823
|
+
isLoading: false;
|
|
824
|
+
isSuccess: true;
|
|
825
|
+
isError: false;
|
|
826
|
+
}) | ({
|
|
827
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
828
|
+
} & {
|
|
829
|
+
requestId: string;
|
|
830
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
831
|
+
error?: unknown;
|
|
832
|
+
endpointName: string;
|
|
833
|
+
startedTimeStamp: number;
|
|
834
|
+
fulfilledTimeStamp?: number;
|
|
835
|
+
} & {
|
|
836
|
+
data?: undefined;
|
|
837
|
+
} & {
|
|
838
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
839
|
+
isUninitialized: false;
|
|
840
|
+
isLoading: true;
|
|
841
|
+
isSuccess: false;
|
|
842
|
+
isError: false;
|
|
843
|
+
}) | ({
|
|
844
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
845
|
+
} & Omit<{
|
|
846
|
+
requestId: string;
|
|
847
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
848
|
+
error?: unknown;
|
|
849
|
+
endpointName: string;
|
|
850
|
+
startedTimeStamp: number;
|
|
851
|
+
fulfilledTimeStamp?: number;
|
|
852
|
+
}, "error"> & Required<Pick<{
|
|
853
|
+
requestId: string;
|
|
854
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
855
|
+
error?: unknown;
|
|
856
|
+
endpointName: string;
|
|
857
|
+
startedTimeStamp: number;
|
|
858
|
+
fulfilledTimeStamp?: number;
|
|
859
|
+
}, "error">> & {
|
|
860
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
861
|
+
isUninitialized: false;
|
|
862
|
+
isLoading: false;
|
|
863
|
+
isSuccess: false;
|
|
864
|
+
isError: true;
|
|
865
|
+
})>(options?: {
|
|
866
|
+
selectFromResult?: ((state: ({
|
|
867
|
+
requestId?: undefined;
|
|
868
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
869
|
+
data?: undefined;
|
|
870
|
+
error?: undefined;
|
|
871
|
+
endpointName?: string;
|
|
872
|
+
startedTimeStamp?: undefined;
|
|
873
|
+
fulfilledTimeStamp?: undefined;
|
|
874
|
+
} & {
|
|
875
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
876
|
+
isUninitialized: true;
|
|
877
|
+
isLoading: false;
|
|
878
|
+
isSuccess: false;
|
|
879
|
+
isError: false;
|
|
880
|
+
}) | ({
|
|
881
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
882
|
+
} & Omit<{
|
|
883
|
+
requestId: string;
|
|
884
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
885
|
+
error?: unknown;
|
|
886
|
+
endpointName: string;
|
|
887
|
+
startedTimeStamp: number;
|
|
888
|
+
fulfilledTimeStamp?: number;
|
|
889
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
890
|
+
requestId: string;
|
|
891
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
892
|
+
error?: unknown;
|
|
893
|
+
endpointName: string;
|
|
894
|
+
startedTimeStamp: number;
|
|
895
|
+
fulfilledTimeStamp?: number;
|
|
896
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
897
|
+
error: undefined;
|
|
898
|
+
} & {
|
|
899
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
900
|
+
isUninitialized: false;
|
|
901
|
+
isLoading: false;
|
|
902
|
+
isSuccess: true;
|
|
903
|
+
isError: false;
|
|
904
|
+
}) | ({
|
|
905
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
906
|
+
} & {
|
|
907
|
+
requestId: string;
|
|
908
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
909
|
+
error?: unknown;
|
|
910
|
+
endpointName: string;
|
|
911
|
+
startedTimeStamp: number;
|
|
912
|
+
fulfilledTimeStamp?: number;
|
|
913
|
+
} & {
|
|
914
|
+
data?: undefined;
|
|
915
|
+
} & {
|
|
916
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
917
|
+
isUninitialized: false;
|
|
918
|
+
isLoading: true;
|
|
919
|
+
isSuccess: false;
|
|
920
|
+
isError: false;
|
|
921
|
+
}) | ({
|
|
922
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
923
|
+
} & Omit<{
|
|
924
|
+
requestId: string;
|
|
925
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
926
|
+
error?: unknown;
|
|
927
|
+
endpointName: string;
|
|
928
|
+
startedTimeStamp: number;
|
|
929
|
+
fulfilledTimeStamp?: number;
|
|
930
|
+
}, "error"> & Required<Pick<{
|
|
931
|
+
requestId: string;
|
|
932
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse | undefined;
|
|
933
|
+
error?: unknown;
|
|
934
|
+
endpointName: string;
|
|
935
|
+
startedTimeStamp: number;
|
|
936
|
+
fulfilledTimeStamp?: number;
|
|
937
|
+
}, "error">> & {
|
|
938
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
939
|
+
isUninitialized: false;
|
|
940
|
+
isLoading: false;
|
|
941
|
+
isSuccess: false;
|
|
942
|
+
isError: true;
|
|
943
|
+
})) => R) | undefined;
|
|
944
|
+
fixedCacheKey?: string;
|
|
945
|
+
} | undefined) => readonly [(arg: {
|
|
946
|
+
platformKey: string;
|
|
947
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadRequest;
|
|
948
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
949
|
+
platformKey: string;
|
|
950
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadRequest;
|
|
951
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
952
|
+
originalArgs?: {
|
|
953
|
+
platformKey: string;
|
|
954
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MarkAllReadRequest;
|
|
955
|
+
} | undefined;
|
|
956
|
+
reset: () => void;
|
|
957
|
+
}], useGetNotificationContextQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
958
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
959
|
+
originalArgs?: undefined | undefined;
|
|
960
|
+
data?: undefined | undefined;
|
|
961
|
+
error?: undefined | undefined;
|
|
962
|
+
requestId?: undefined | undefined;
|
|
963
|
+
endpointName?: string | undefined;
|
|
964
|
+
startedTimeStamp?: undefined | undefined;
|
|
965
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
966
|
+
} & {
|
|
967
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
968
|
+
isUninitialized: false;
|
|
969
|
+
isLoading: false;
|
|
970
|
+
isFetching: false;
|
|
971
|
+
isSuccess: false;
|
|
972
|
+
isError: false;
|
|
973
|
+
}, "isUninitialized"> & {
|
|
974
|
+
isUninitialized: true;
|
|
975
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
976
|
+
platformKey: string;
|
|
977
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
978
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
979
|
+
isUninitialized: false;
|
|
980
|
+
isLoading: false;
|
|
981
|
+
isFetching: false;
|
|
982
|
+
isSuccess: false;
|
|
983
|
+
isError: false;
|
|
984
|
+
}, {
|
|
985
|
+
isLoading: true;
|
|
986
|
+
isFetching: boolean;
|
|
987
|
+
data: undefined;
|
|
988
|
+
} | ({
|
|
989
|
+
isSuccess: true;
|
|
990
|
+
isFetching: true;
|
|
991
|
+
error: undefined;
|
|
992
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
993
|
+
platformKey: string;
|
|
994
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
995
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
996
|
+
isUninitialized: false;
|
|
997
|
+
isLoading: false;
|
|
998
|
+
isFetching: false;
|
|
999
|
+
isSuccess: false;
|
|
1000
|
+
isError: false;
|
|
1001
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1002
|
+
isSuccess: true;
|
|
1003
|
+
isFetching: false;
|
|
1004
|
+
error: undefined;
|
|
1005
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1006
|
+
platformKey: string;
|
|
1007
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1008
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1009
|
+
isUninitialized: false;
|
|
1010
|
+
isLoading: false;
|
|
1011
|
+
isFetching: false;
|
|
1012
|
+
isSuccess: false;
|
|
1013
|
+
isError: false;
|
|
1014
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1015
|
+
isError: true;
|
|
1016
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1017
|
+
platformKey: string;
|
|
1018
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1019
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1020
|
+
isUninitialized: false;
|
|
1021
|
+
isLoading: false;
|
|
1022
|
+
isFetching: false;
|
|
1023
|
+
isSuccess: false;
|
|
1024
|
+
isError: false;
|
|
1025
|
+
}, "error">>)>> & {
|
|
1026
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1027
|
+
}>(arg: {
|
|
1028
|
+
platformKey: string;
|
|
1029
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1030
|
+
skip?: boolean;
|
|
1031
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
1032
|
+
} & {
|
|
1033
|
+
skip?: boolean;
|
|
1034
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1035
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1036
|
+
originalArgs?: undefined | undefined;
|
|
1037
|
+
data?: undefined | undefined;
|
|
1038
|
+
error?: undefined | undefined;
|
|
1039
|
+
requestId?: undefined | undefined;
|
|
1040
|
+
endpointName?: string | undefined;
|
|
1041
|
+
startedTimeStamp?: undefined | undefined;
|
|
1042
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1043
|
+
} & {
|
|
1044
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1045
|
+
isUninitialized: false;
|
|
1046
|
+
isLoading: false;
|
|
1047
|
+
isFetching: false;
|
|
1048
|
+
isSuccess: false;
|
|
1049
|
+
isError: false;
|
|
1050
|
+
}, "isUninitialized"> & {
|
|
1051
|
+
isUninitialized: true;
|
|
1052
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1053
|
+
platformKey: string;
|
|
1054
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1055
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1056
|
+
isUninitialized: false;
|
|
1057
|
+
isLoading: false;
|
|
1058
|
+
isFetching: false;
|
|
1059
|
+
isSuccess: false;
|
|
1060
|
+
isError: false;
|
|
1061
|
+
}, {
|
|
1062
|
+
isLoading: true;
|
|
1063
|
+
isFetching: boolean;
|
|
1064
|
+
data: undefined;
|
|
1065
|
+
} | ({
|
|
1066
|
+
isSuccess: true;
|
|
1067
|
+
isFetching: true;
|
|
1068
|
+
error: undefined;
|
|
1069
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1070
|
+
platformKey: string;
|
|
1071
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1072
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1073
|
+
isUninitialized: false;
|
|
1074
|
+
isLoading: false;
|
|
1075
|
+
isFetching: false;
|
|
1076
|
+
isSuccess: false;
|
|
1077
|
+
isError: false;
|
|
1078
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1079
|
+
isSuccess: true;
|
|
1080
|
+
isFetching: false;
|
|
1081
|
+
error: undefined;
|
|
1082
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1083
|
+
platformKey: string;
|
|
1084
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1085
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1086
|
+
isUninitialized: false;
|
|
1087
|
+
isLoading: false;
|
|
1088
|
+
isFetching: false;
|
|
1089
|
+
isSuccess: false;
|
|
1090
|
+
isError: false;
|
|
1091
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1092
|
+
isError: true;
|
|
1093
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1094
|
+
platformKey: string;
|
|
1095
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1096
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1097
|
+
isUninitialized: false;
|
|
1098
|
+
isLoading: false;
|
|
1099
|
+
isFetching: false;
|
|
1100
|
+
isSuccess: false;
|
|
1101
|
+
isError: false;
|
|
1102
|
+
}, "error">>)>> & {
|
|
1103
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1104
|
+
}) => R) | undefined;
|
|
1105
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1106
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1107
|
+
platformKey: string;
|
|
1108
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>>;
|
|
1109
|
+
}, useLazyGetNotificationContextQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1110
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1111
|
+
originalArgs?: undefined | undefined;
|
|
1112
|
+
data?: undefined | undefined;
|
|
1113
|
+
error?: undefined | undefined;
|
|
1114
|
+
requestId?: undefined | undefined;
|
|
1115
|
+
endpointName?: string | undefined;
|
|
1116
|
+
startedTimeStamp?: undefined | undefined;
|
|
1117
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1118
|
+
} & {
|
|
1119
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1120
|
+
isUninitialized: false;
|
|
1121
|
+
isLoading: false;
|
|
1122
|
+
isFetching: false;
|
|
1123
|
+
isSuccess: false;
|
|
1124
|
+
isError: false;
|
|
1125
|
+
}, "isUninitialized"> & {
|
|
1126
|
+
isUninitialized: true;
|
|
1127
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1128
|
+
platformKey: string;
|
|
1129
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1130
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1131
|
+
isUninitialized: false;
|
|
1132
|
+
isLoading: false;
|
|
1133
|
+
isFetching: false;
|
|
1134
|
+
isSuccess: false;
|
|
1135
|
+
isError: false;
|
|
1136
|
+
}, {
|
|
1137
|
+
isLoading: true;
|
|
1138
|
+
isFetching: boolean;
|
|
1139
|
+
data: undefined;
|
|
1140
|
+
} | ({
|
|
1141
|
+
isSuccess: true;
|
|
1142
|
+
isFetching: true;
|
|
1143
|
+
error: undefined;
|
|
1144
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1145
|
+
platformKey: string;
|
|
1146
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1147
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1148
|
+
isUninitialized: false;
|
|
1149
|
+
isLoading: false;
|
|
1150
|
+
isFetching: false;
|
|
1151
|
+
isSuccess: false;
|
|
1152
|
+
isError: false;
|
|
1153
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1154
|
+
isSuccess: true;
|
|
1155
|
+
isFetching: false;
|
|
1156
|
+
error: undefined;
|
|
1157
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1158
|
+
platformKey: string;
|
|
1159
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1160
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1161
|
+
isUninitialized: false;
|
|
1162
|
+
isLoading: false;
|
|
1163
|
+
isFetching: false;
|
|
1164
|
+
isSuccess: false;
|
|
1165
|
+
isError: false;
|
|
1166
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1167
|
+
isError: true;
|
|
1168
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1169
|
+
platformKey: string;
|
|
1170
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1171
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1172
|
+
isUninitialized: false;
|
|
1173
|
+
isLoading: false;
|
|
1174
|
+
isFetching: false;
|
|
1175
|
+
isSuccess: false;
|
|
1176
|
+
isError: false;
|
|
1177
|
+
}, "error">>)>> & {
|
|
1178
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1179
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
1180
|
+
skip?: boolean;
|
|
1181
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1182
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1183
|
+
originalArgs?: undefined | undefined;
|
|
1184
|
+
data?: undefined | undefined;
|
|
1185
|
+
error?: undefined | undefined;
|
|
1186
|
+
requestId?: undefined | undefined;
|
|
1187
|
+
endpointName?: string | undefined;
|
|
1188
|
+
startedTimeStamp?: undefined | undefined;
|
|
1189
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1190
|
+
} & {
|
|
1191
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1192
|
+
isUninitialized: false;
|
|
1193
|
+
isLoading: false;
|
|
1194
|
+
isFetching: false;
|
|
1195
|
+
isSuccess: false;
|
|
1196
|
+
isError: false;
|
|
1197
|
+
}, "isUninitialized"> & {
|
|
1198
|
+
isUninitialized: true;
|
|
1199
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1200
|
+
platformKey: string;
|
|
1201
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1202
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1203
|
+
isUninitialized: false;
|
|
1204
|
+
isLoading: false;
|
|
1205
|
+
isFetching: false;
|
|
1206
|
+
isSuccess: false;
|
|
1207
|
+
isError: false;
|
|
1208
|
+
}, {
|
|
1209
|
+
isLoading: true;
|
|
1210
|
+
isFetching: boolean;
|
|
1211
|
+
data: undefined;
|
|
1212
|
+
} | ({
|
|
1213
|
+
isSuccess: true;
|
|
1214
|
+
isFetching: true;
|
|
1215
|
+
error: undefined;
|
|
1216
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1217
|
+
platformKey: string;
|
|
1218
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1219
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1220
|
+
isUninitialized: false;
|
|
1221
|
+
isLoading: false;
|
|
1222
|
+
isFetching: false;
|
|
1223
|
+
isSuccess: false;
|
|
1224
|
+
isError: false;
|
|
1225
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1226
|
+
isSuccess: true;
|
|
1227
|
+
isFetching: false;
|
|
1228
|
+
error: undefined;
|
|
1229
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1230
|
+
platformKey: string;
|
|
1231
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1232
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1233
|
+
isUninitialized: false;
|
|
1234
|
+
isLoading: false;
|
|
1235
|
+
isFetching: false;
|
|
1236
|
+
isSuccess: false;
|
|
1237
|
+
isError: false;
|
|
1238
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1239
|
+
isError: true;
|
|
1240
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1241
|
+
platformKey: string;
|
|
1242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>> & {
|
|
1243
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ContextResponse | undefined;
|
|
1244
|
+
isUninitialized: false;
|
|
1245
|
+
isLoading: false;
|
|
1246
|
+
isFetching: false;
|
|
1247
|
+
isSuccess: false;
|
|
1248
|
+
isError: false;
|
|
1249
|
+
}, "error">>)>> & {
|
|
1250
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1251
|
+
}) => R) | undefined;
|
|
1252
|
+
}, "skip">) | undefined) => [(arg: {
|
|
1253
|
+
platformKey: string;
|
|
1254
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1255
|
+
platformKey: string;
|
|
1256
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").ContextResponse, "notificationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1257
|
+
reset: () => void;
|
|
1258
|
+
}, {
|
|
1259
|
+
lastArg: {
|
|
1260
|
+
platformKey: string;
|
|
1261
|
+
};
|
|
1262
|
+
}], useCreateNotificationPreviewMutation: <R extends Record<string, any> = ({
|
|
1263
|
+
requestId?: undefined;
|
|
1264
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1265
|
+
data?: undefined;
|
|
1266
|
+
error?: undefined;
|
|
1267
|
+
endpointName?: string;
|
|
1268
|
+
startedTimeStamp?: undefined;
|
|
1269
|
+
fulfilledTimeStamp?: undefined;
|
|
1270
|
+
} & {
|
|
1271
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1272
|
+
isUninitialized: true;
|
|
1273
|
+
isLoading: false;
|
|
1274
|
+
isSuccess: false;
|
|
1275
|
+
isError: false;
|
|
1276
|
+
}) | ({
|
|
1277
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1278
|
+
} & Omit<{
|
|
1279
|
+
requestId: string;
|
|
1280
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1281
|
+
error?: unknown;
|
|
1282
|
+
endpointName: string;
|
|
1283
|
+
startedTimeStamp: number;
|
|
1284
|
+
fulfilledTimeStamp?: number;
|
|
1285
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1286
|
+
requestId: string;
|
|
1287
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1288
|
+
error?: unknown;
|
|
1289
|
+
endpointName: string;
|
|
1290
|
+
startedTimeStamp: number;
|
|
1291
|
+
fulfilledTimeStamp?: number;
|
|
1292
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1293
|
+
error: undefined;
|
|
1294
|
+
} & {
|
|
1295
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1296
|
+
isUninitialized: false;
|
|
1297
|
+
isLoading: false;
|
|
1298
|
+
isSuccess: true;
|
|
1299
|
+
isError: false;
|
|
1300
|
+
}) | ({
|
|
1301
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1302
|
+
} & {
|
|
1303
|
+
requestId: string;
|
|
1304
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1305
|
+
error?: unknown;
|
|
1306
|
+
endpointName: string;
|
|
1307
|
+
startedTimeStamp: number;
|
|
1308
|
+
fulfilledTimeStamp?: number;
|
|
1309
|
+
} & {
|
|
1310
|
+
data?: undefined;
|
|
1311
|
+
} & {
|
|
1312
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1313
|
+
isUninitialized: false;
|
|
1314
|
+
isLoading: true;
|
|
1315
|
+
isSuccess: false;
|
|
1316
|
+
isError: false;
|
|
1317
|
+
}) | ({
|
|
1318
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1319
|
+
} & Omit<{
|
|
1320
|
+
requestId: string;
|
|
1321
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1322
|
+
error?: unknown;
|
|
1323
|
+
endpointName: string;
|
|
1324
|
+
startedTimeStamp: number;
|
|
1325
|
+
fulfilledTimeStamp?: number;
|
|
1326
|
+
}, "error"> & Required<Pick<{
|
|
1327
|
+
requestId: string;
|
|
1328
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1329
|
+
error?: unknown;
|
|
1330
|
+
endpointName: string;
|
|
1331
|
+
startedTimeStamp: number;
|
|
1332
|
+
fulfilledTimeStamp?: number;
|
|
1333
|
+
}, "error">> & {
|
|
1334
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1335
|
+
isUninitialized: false;
|
|
1336
|
+
isLoading: false;
|
|
1337
|
+
isSuccess: false;
|
|
1338
|
+
isError: true;
|
|
1339
|
+
})>(options?: {
|
|
1340
|
+
selectFromResult?: ((state: ({
|
|
1341
|
+
requestId?: undefined;
|
|
1342
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1343
|
+
data?: undefined;
|
|
1344
|
+
error?: undefined;
|
|
1345
|
+
endpointName?: string;
|
|
1346
|
+
startedTimeStamp?: undefined;
|
|
1347
|
+
fulfilledTimeStamp?: undefined;
|
|
1348
|
+
} & {
|
|
1349
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1350
|
+
isUninitialized: true;
|
|
1351
|
+
isLoading: false;
|
|
1352
|
+
isSuccess: false;
|
|
1353
|
+
isError: false;
|
|
1354
|
+
}) | ({
|
|
1355
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1356
|
+
} & Omit<{
|
|
1357
|
+
requestId: string;
|
|
1358
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1359
|
+
error?: unknown;
|
|
1360
|
+
endpointName: string;
|
|
1361
|
+
startedTimeStamp: number;
|
|
1362
|
+
fulfilledTimeStamp?: number;
|
|
1363
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1364
|
+
requestId: string;
|
|
1365
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1366
|
+
error?: unknown;
|
|
1367
|
+
endpointName: string;
|
|
1368
|
+
startedTimeStamp: number;
|
|
1369
|
+
fulfilledTimeStamp?: number;
|
|
1370
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1371
|
+
error: undefined;
|
|
1372
|
+
} & {
|
|
1373
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1374
|
+
isUninitialized: false;
|
|
1375
|
+
isLoading: false;
|
|
1376
|
+
isSuccess: true;
|
|
1377
|
+
isError: false;
|
|
1378
|
+
}) | ({
|
|
1379
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1380
|
+
} & {
|
|
1381
|
+
requestId: string;
|
|
1382
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1383
|
+
error?: unknown;
|
|
1384
|
+
endpointName: string;
|
|
1385
|
+
startedTimeStamp: number;
|
|
1386
|
+
fulfilledTimeStamp?: number;
|
|
1387
|
+
} & {
|
|
1388
|
+
data?: undefined;
|
|
1389
|
+
} & {
|
|
1390
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1391
|
+
isUninitialized: false;
|
|
1392
|
+
isLoading: true;
|
|
1393
|
+
isSuccess: false;
|
|
1394
|
+
isError: false;
|
|
1395
|
+
}) | ({
|
|
1396
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1397
|
+
} & Omit<{
|
|
1398
|
+
requestId: string;
|
|
1399
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1400
|
+
error?: unknown;
|
|
1401
|
+
endpointName: string;
|
|
1402
|
+
startedTimeStamp: number;
|
|
1403
|
+
fulfilledTimeStamp?: number;
|
|
1404
|
+
}, "error"> & Required<Pick<{
|
|
1405
|
+
requestId: string;
|
|
1406
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse | undefined;
|
|
1407
|
+
error?: unknown;
|
|
1408
|
+
endpointName: string;
|
|
1409
|
+
startedTimeStamp: number;
|
|
1410
|
+
fulfilledTimeStamp?: number;
|
|
1411
|
+
}, "error">> & {
|
|
1412
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1413
|
+
isUninitialized: false;
|
|
1414
|
+
isLoading: false;
|
|
1415
|
+
isSuccess: false;
|
|
1416
|
+
isError: true;
|
|
1417
|
+
})) => R) | undefined;
|
|
1418
|
+
fixedCacheKey?: string;
|
|
1419
|
+
} | undefined) => readonly [(arg: {
|
|
1420
|
+
platformKey: string;
|
|
1421
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").NotificationPreview;
|
|
1422
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1423
|
+
platformKey: string;
|
|
1424
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").NotificationPreview;
|
|
1425
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").PreviewResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1426
|
+
originalArgs?: {
|
|
1427
|
+
platformKey: string;
|
|
1428
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").NotificationPreview;
|
|
1429
|
+
} | undefined;
|
|
1430
|
+
reset: () => void;
|
|
1431
|
+
}], useSendNotificationMutation: <R extends Record<string, any> = ({
|
|
1432
|
+
requestId?: undefined;
|
|
1433
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1434
|
+
data?: undefined;
|
|
1435
|
+
error?: undefined;
|
|
1436
|
+
endpointName?: string;
|
|
1437
|
+
startedTimeStamp?: undefined;
|
|
1438
|
+
fulfilledTimeStamp?: undefined;
|
|
1439
|
+
} & {
|
|
1440
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1441
|
+
isUninitialized: true;
|
|
1442
|
+
isLoading: false;
|
|
1443
|
+
isSuccess: false;
|
|
1444
|
+
isError: false;
|
|
1445
|
+
}) | ({
|
|
1446
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1447
|
+
} & Omit<{
|
|
1448
|
+
requestId: string;
|
|
1449
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
796
1450
|
error?: unknown;
|
|
797
1451
|
endpointName: string;
|
|
798
1452
|
startedTimeStamp: number;
|
|
799
1453
|
fulfilledTimeStamp?: number;
|
|
800
1454
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
801
1455
|
requestId: string;
|
|
802
|
-
data?: import("
|
|
1456
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
803
1457
|
error?: unknown;
|
|
804
1458
|
endpointName: string;
|
|
805
1459
|
startedTimeStamp: number;
|
|
@@ -816,7 +1470,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
816
1470
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
817
1471
|
} & {
|
|
818
1472
|
requestId: string;
|
|
819
|
-
data?: import("
|
|
1473
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
820
1474
|
error?: unknown;
|
|
821
1475
|
endpointName: string;
|
|
822
1476
|
startedTimeStamp: number;
|
|
@@ -833,14 +1487,14 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
833
1487
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
834
1488
|
} & Omit<{
|
|
835
1489
|
requestId: string;
|
|
836
|
-
data?: import("
|
|
1490
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
837
1491
|
error?: unknown;
|
|
838
1492
|
endpointName: string;
|
|
839
1493
|
startedTimeStamp: number;
|
|
840
1494
|
fulfilledTimeStamp?: number;
|
|
841
1495
|
}, "error"> & Required<Pick<{
|
|
842
1496
|
requestId: string;
|
|
843
|
-
data?: import("
|
|
1497
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
844
1498
|
error?: unknown;
|
|
845
1499
|
endpointName: string;
|
|
846
1500
|
startedTimeStamp: number;
|
|
@@ -870,14 +1524,14 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
870
1524
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
871
1525
|
} & Omit<{
|
|
872
1526
|
requestId: string;
|
|
873
|
-
data?: import("
|
|
1527
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
874
1528
|
error?: unknown;
|
|
875
1529
|
endpointName: string;
|
|
876
1530
|
startedTimeStamp: number;
|
|
877
1531
|
fulfilledTimeStamp?: number;
|
|
878
1532
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
879
1533
|
requestId: string;
|
|
880
|
-
data?: import("
|
|
1534
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
881
1535
|
error?: unknown;
|
|
882
1536
|
endpointName: string;
|
|
883
1537
|
startedTimeStamp: number;
|
|
@@ -894,7 +1548,7 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
894
1548
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
895
1549
|
} & {
|
|
896
1550
|
requestId: string;
|
|
897
|
-
data?: import("
|
|
1551
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
898
1552
|
error?: unknown;
|
|
899
1553
|
endpointName: string;
|
|
900
1554
|
startedTimeStamp: number;
|
|
@@ -911,14 +1565,14 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
911
1565
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
912
1566
|
} & Omit<{
|
|
913
1567
|
requestId: string;
|
|
914
|
-
data?: import("
|
|
1568
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
915
1569
|
error?: unknown;
|
|
916
1570
|
endpointName: string;
|
|
917
1571
|
startedTimeStamp: number;
|
|
918
1572
|
fulfilledTimeStamp?: number;
|
|
919
1573
|
}, "error"> & Required<Pick<{
|
|
920
1574
|
requestId: string;
|
|
921
|
-
data?: import("
|
|
1575
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SendResponse | undefined;
|
|
922
1576
|
error?: unknown;
|
|
923
1577
|
endpointName: string;
|
|
924
1578
|
startedTimeStamp: number;
|
|
@@ -933,14 +1587,14 @@ export declare const useGetNotificationsCountQuery: <R extends Record<string, an
|
|
|
933
1587
|
fixedCacheKey?: string;
|
|
934
1588
|
} | undefined) => readonly [(arg: {
|
|
935
1589
|
platformKey: string;
|
|
936
|
-
requestBody
|
|
1590
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SendNotification;
|
|
937
1591
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
938
1592
|
platformKey: string;
|
|
939
|
-
requestBody
|
|
940
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1593
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SendNotification;
|
|
1594
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "Notifications" | "NotificationBuilder", import("node_modules/@iblai/iblai-api/dist/types").SendResponse, "notificationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
941
1595
|
originalArgs?: {
|
|
942
1596
|
platformKey: string;
|
|
943
|
-
requestBody
|
|
1597
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SendNotification;
|
|
944
1598
|
} | undefined;
|
|
945
1599
|
reset: () => void;
|
|
946
1600
|
}];
|