@iblai/web-utils 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-layer/src/core/index.d.ts +2 -1
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
- package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
- package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
- package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
- package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
- package/dist/data-layer/src/features/auth/types.d.ts +20 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
- package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
- package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
- package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
- package/dist/data-layer/src/features/core/constants.d.ts +40 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/data-layer/src/features/core/types.d.ts +27 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
- package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
- package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
- package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
- package/dist/data-layer/src/features/memory/types.d.ts +122 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
- package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
- package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
- package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
- package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
- package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/data-layer/src/features/platform/types.d.ts +48 -0
- package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
- package/dist/data-layer/src/features/projects/types.d.ts +79 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
- package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
- package/dist/data-layer/src/features/search/constants.d.ts +31 -0
- package/dist/data-layer/src/features/search/types.d.ts +89 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
- package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
- package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
- package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
- package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
- package/dist/data-layer/src/features/user/constants.d.ts +3 -1
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/utils.d.ts +8 -5
- package/dist/data-layer/src/index.d.ts +75 -47
- package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
- package/dist/data-layer/src/services/StorageService.d.ts +1 -1
- package/dist/index.d.ts +1021 -5
- package/dist/index.esm.js +3299 -453
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3305 -448
- package/dist/index.js.map +1 -1
- package/dist/package.json +34 -18
- package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
- package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
- package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +10 -0
- package/dist/web-utils/src/index.web.d.ts +12 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
- package/dist/web-utils/src/types/index.d.ts +9 -0
- package/dist/web-utils/src/utils/constants.d.ts +4 -0
- package/dist/web-utils/src/utils/helpers.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +7 -0
- package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +31 -17
- package/dist/features/chat/slice.d.ts +0 -59
- package/dist/features/index.d.ts +0 -1
- package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
- package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
- package/dist/hooks/chat/use-chat.d.ts +0 -52
- package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
- package/dist/hooks/index.d.ts +0 -10
- package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
- package/dist/hooks/subscription/constants.d.ts +0 -4
- package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
- package/dist/hooks/subscription-v2/constants.d.ts +0 -5
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
- package/dist/hooks/use-day-js.d.ts +0 -7
- package/dist/providers/auth-provider.d.ts +0 -63
- package/dist/providers/index.d.ts +0 -3
- package/dist/providers/mentor-provider.d.ts +0 -40
- package/dist/providers/tenant-provider.d.ts +0 -60
- package/dist/types/chat.d.ts +0 -1
- package/dist/types/index.d.ts +0 -55
- package/dist/types/subscription.d.ts +0 -18
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/data/advanced-tab.d.ts +0 -62
- package/dist/utils/helpers.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -3
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export declare const perLearnerApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const perLearnerApiSlice: 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
|
getPerLearnerActivity: import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
3
3
|
org: string;
|
|
4
4
|
departmentId?: number;
|
|
5
5
|
format?: "json";
|
|
6
6
|
includeMainPlatform?: boolean;
|
|
7
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
7
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>;
|
|
8
8
|
getPerLearnerInfo: import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
9
9
|
org: string;
|
|
10
10
|
departmentId?: number;
|
|
@@ -12,7 +12,7 @@ export declare const perLearnerApiSlice: import("@reduxjs/toolkit/query").Api<im
|
|
|
12
12
|
includeMainPlatform?: boolean;
|
|
13
13
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
14
14
|
search?: string;
|
|
15
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
15
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>;
|
|
16
16
|
getOverTimeActivity: import("@reduxjs/toolkit/query").QueryDefinition<[{
|
|
17
17
|
org: string;
|
|
18
18
|
departmentId?: number;
|
|
@@ -20,7 +20,7 @@ export declare const perLearnerApiSlice: import("@reduxjs/toolkit/query").Api<im
|
|
|
20
20
|
format?: "json";
|
|
21
21
|
includeMainPlatform?: boolean;
|
|
22
22
|
startDate?: string;
|
|
23
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
23
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>;
|
|
24
24
|
}, "perLearnerApiSlice", "perLearner", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
25
25
|
export declare const useGetPerLearnerActivityQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
26
26
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -32,7 +32,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
32
32
|
startedTimeStamp?: undefined | undefined;
|
|
33
33
|
fulfilledTimeStamp?: undefined | undefined;
|
|
34
34
|
} & {
|
|
35
|
-
currentData?: import("
|
|
35
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
36
36
|
isUninitialized: false;
|
|
37
37
|
isLoading: false;
|
|
38
38
|
isFetching: false;
|
|
@@ -45,8 +45,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
45
45
|
departmentId?: number;
|
|
46
46
|
format?: "json";
|
|
47
47
|
includeMainPlatform?: boolean;
|
|
48
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
49
|
-
currentData?: import("
|
|
48
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
49
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
50
50
|
isUninitialized: false;
|
|
51
51
|
isLoading: false;
|
|
52
52
|
isFetching: false;
|
|
@@ -65,8 +65,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
65
65
|
departmentId?: number;
|
|
66
66
|
format?: "json";
|
|
67
67
|
includeMainPlatform?: boolean;
|
|
68
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
69
|
-
currentData?: import("
|
|
68
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
69
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
70
70
|
isUninitialized: false;
|
|
71
71
|
isLoading: false;
|
|
72
72
|
isFetching: false;
|
|
@@ -81,8 +81,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
81
81
|
departmentId?: number;
|
|
82
82
|
format?: "json";
|
|
83
83
|
includeMainPlatform?: boolean;
|
|
84
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
85
|
-
currentData?: import("
|
|
84
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
85
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
86
86
|
isUninitialized: false;
|
|
87
87
|
isLoading: false;
|
|
88
88
|
isFetching: false;
|
|
@@ -95,8 +95,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
95
95
|
departmentId?: number;
|
|
96
96
|
format?: "json";
|
|
97
97
|
includeMainPlatform?: boolean;
|
|
98
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
99
|
-
currentData?: import("
|
|
98
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
99
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
100
100
|
isUninitialized: false;
|
|
101
101
|
isLoading: false;
|
|
102
102
|
isFetching: false;
|
|
@@ -124,7 +124,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
124
124
|
startedTimeStamp?: undefined | undefined;
|
|
125
125
|
fulfilledTimeStamp?: undefined | undefined;
|
|
126
126
|
} & {
|
|
127
|
-
currentData?: import("
|
|
127
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
128
128
|
isUninitialized: false;
|
|
129
129
|
isLoading: false;
|
|
130
130
|
isFetching: false;
|
|
@@ -137,8 +137,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
137
137
|
departmentId?: number;
|
|
138
138
|
format?: "json";
|
|
139
139
|
includeMainPlatform?: boolean;
|
|
140
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
141
|
-
currentData?: import("
|
|
140
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
141
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
142
142
|
isUninitialized: false;
|
|
143
143
|
isLoading: false;
|
|
144
144
|
isFetching: false;
|
|
@@ -157,8 +157,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
157
157
|
departmentId?: number;
|
|
158
158
|
format?: "json";
|
|
159
159
|
includeMainPlatform?: boolean;
|
|
160
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
161
|
-
currentData?: import("
|
|
160
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
161
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
162
162
|
isUninitialized: false;
|
|
163
163
|
isLoading: false;
|
|
164
164
|
isFetching: false;
|
|
@@ -173,8 +173,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
173
173
|
departmentId?: number;
|
|
174
174
|
format?: "json";
|
|
175
175
|
includeMainPlatform?: boolean;
|
|
176
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
177
|
-
currentData?: import("
|
|
176
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
177
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
178
178
|
isUninitialized: false;
|
|
179
179
|
isLoading: false;
|
|
180
180
|
isFetching: false;
|
|
@@ -187,8 +187,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
187
187
|
departmentId?: number;
|
|
188
188
|
format?: "json";
|
|
189
189
|
includeMainPlatform?: boolean;
|
|
190
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
191
|
-
currentData?: import("
|
|
190
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
191
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
192
192
|
isUninitialized: false;
|
|
193
193
|
isLoading: false;
|
|
194
194
|
isFetching: false;
|
|
@@ -203,7 +203,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
203
203
|
departmentId?: number;
|
|
204
204
|
format?: "json";
|
|
205
205
|
includeMainPlatform?: boolean;
|
|
206
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
206
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>>;
|
|
207
207
|
}, useLazyGetPerLearnerActivityQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
208
208
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
209
209
|
originalArgs?: undefined | undefined;
|
|
@@ -214,7 +214,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
214
214
|
startedTimeStamp?: undefined | undefined;
|
|
215
215
|
fulfilledTimeStamp?: undefined | undefined;
|
|
216
216
|
} & {
|
|
217
|
-
currentData?: import("
|
|
217
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
218
218
|
isUninitialized: false;
|
|
219
219
|
isLoading: false;
|
|
220
220
|
isFetching: false;
|
|
@@ -227,8 +227,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
227
227
|
departmentId?: number;
|
|
228
228
|
format?: "json";
|
|
229
229
|
includeMainPlatform?: boolean;
|
|
230
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
231
|
-
currentData?: import("
|
|
230
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
231
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
232
232
|
isUninitialized: false;
|
|
233
233
|
isLoading: false;
|
|
234
234
|
isFetching: false;
|
|
@@ -247,8 +247,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
247
247
|
departmentId?: number;
|
|
248
248
|
format?: "json";
|
|
249
249
|
includeMainPlatform?: boolean;
|
|
250
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
251
|
-
currentData?: import("
|
|
250
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
251
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
252
252
|
isUninitialized: false;
|
|
253
253
|
isLoading: false;
|
|
254
254
|
isFetching: false;
|
|
@@ -263,8 +263,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
263
263
|
departmentId?: number;
|
|
264
264
|
format?: "json";
|
|
265
265
|
includeMainPlatform?: boolean;
|
|
266
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
267
|
-
currentData?: import("
|
|
266
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
267
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
268
268
|
isUninitialized: false;
|
|
269
269
|
isLoading: false;
|
|
270
270
|
isFetching: false;
|
|
@@ -277,8 +277,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
277
277
|
departmentId?: number;
|
|
278
278
|
format?: "json";
|
|
279
279
|
includeMainPlatform?: boolean;
|
|
280
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
281
|
-
currentData?: import("
|
|
280
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
281
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
282
282
|
isUninitialized: false;
|
|
283
283
|
isLoading: false;
|
|
284
284
|
isFetching: false;
|
|
@@ -298,7 +298,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
298
298
|
startedTimeStamp?: undefined | undefined;
|
|
299
299
|
fulfilledTimeStamp?: undefined | undefined;
|
|
300
300
|
} & {
|
|
301
|
-
currentData?: import("
|
|
301
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
302
302
|
isUninitialized: false;
|
|
303
303
|
isLoading: false;
|
|
304
304
|
isFetching: false;
|
|
@@ -311,8 +311,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
311
311
|
departmentId?: number;
|
|
312
312
|
format?: "json";
|
|
313
313
|
includeMainPlatform?: boolean;
|
|
314
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
315
|
-
currentData?: import("
|
|
314
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
315
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
316
316
|
isUninitialized: false;
|
|
317
317
|
isLoading: false;
|
|
318
318
|
isFetching: false;
|
|
@@ -331,8 +331,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
331
331
|
departmentId?: number;
|
|
332
332
|
format?: "json";
|
|
333
333
|
includeMainPlatform?: boolean;
|
|
334
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
335
|
-
currentData?: import("
|
|
334
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
335
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
336
336
|
isUninitialized: false;
|
|
337
337
|
isLoading: false;
|
|
338
338
|
isFetching: false;
|
|
@@ -347,8 +347,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
347
347
|
departmentId?: number;
|
|
348
348
|
format?: "json";
|
|
349
349
|
includeMainPlatform?: boolean;
|
|
350
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
351
|
-
currentData?: import("
|
|
350
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
351
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
352
352
|
isUninitialized: false;
|
|
353
353
|
isLoading: false;
|
|
354
354
|
isFetching: false;
|
|
@@ -361,8 +361,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
361
361
|
departmentId?: number;
|
|
362
362
|
format?: "json";
|
|
363
363
|
includeMainPlatform?: boolean;
|
|
364
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
365
|
-
currentData?: import("
|
|
364
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>> & {
|
|
365
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI | undefined;
|
|
366
366
|
isUninitialized: false;
|
|
367
367
|
isLoading: false;
|
|
368
368
|
isFetching: false;
|
|
@@ -381,7 +381,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
381
381
|
departmentId?: number;
|
|
382
382
|
format?: "json";
|
|
383
383
|
includeMainPlatform?: boolean;
|
|
384
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
384
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").ActivityAPI, "perLearnerApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
385
385
|
reset: () => void;
|
|
386
386
|
}, {
|
|
387
387
|
lastArg: [{
|
|
@@ -400,7 +400,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
400
400
|
startedTimeStamp?: undefined | undefined;
|
|
401
401
|
fulfilledTimeStamp?: undefined | undefined;
|
|
402
402
|
} & {
|
|
403
|
-
currentData?: import("
|
|
403
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
404
404
|
isUninitialized: false;
|
|
405
405
|
isLoading: false;
|
|
406
406
|
isFetching: false;
|
|
@@ -415,8 +415,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
415
415
|
includeMainPlatform?: boolean;
|
|
416
416
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
417
417
|
search?: string;
|
|
418
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
419
|
-
currentData?: import("
|
|
418
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
419
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
420
420
|
isUninitialized: false;
|
|
421
421
|
isLoading: false;
|
|
422
422
|
isFetching: false;
|
|
@@ -437,8 +437,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
437
437
|
includeMainPlatform?: boolean;
|
|
438
438
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
439
439
|
search?: string;
|
|
440
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
441
|
-
currentData?: import("
|
|
440
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
441
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
442
442
|
isUninitialized: false;
|
|
443
443
|
isLoading: false;
|
|
444
444
|
isFetching: false;
|
|
@@ -455,8 +455,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
455
455
|
includeMainPlatform?: boolean;
|
|
456
456
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
457
457
|
search?: string;
|
|
458
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
459
|
-
currentData?: import("
|
|
458
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
459
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
460
460
|
isUninitialized: false;
|
|
461
461
|
isLoading: false;
|
|
462
462
|
isFetching: false;
|
|
@@ -471,8 +471,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
471
471
|
includeMainPlatform?: boolean;
|
|
472
472
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
473
473
|
search?: string;
|
|
474
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
475
|
-
currentData?: import("
|
|
474
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
475
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
476
476
|
isUninitialized: false;
|
|
477
477
|
isLoading: false;
|
|
478
478
|
isFetching: false;
|
|
@@ -502,7 +502,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
502
502
|
startedTimeStamp?: undefined | undefined;
|
|
503
503
|
fulfilledTimeStamp?: undefined | undefined;
|
|
504
504
|
} & {
|
|
505
|
-
currentData?: import("
|
|
505
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
506
506
|
isUninitialized: false;
|
|
507
507
|
isLoading: false;
|
|
508
508
|
isFetching: false;
|
|
@@ -517,8 +517,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
517
517
|
includeMainPlatform?: boolean;
|
|
518
518
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
519
519
|
search?: string;
|
|
520
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
521
|
-
currentData?: import("
|
|
520
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
521
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
522
522
|
isUninitialized: false;
|
|
523
523
|
isLoading: false;
|
|
524
524
|
isFetching: false;
|
|
@@ -539,8 +539,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
539
539
|
includeMainPlatform?: boolean;
|
|
540
540
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
541
541
|
search?: string;
|
|
542
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
543
|
-
currentData?: import("
|
|
542
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
543
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
544
544
|
isUninitialized: false;
|
|
545
545
|
isLoading: false;
|
|
546
546
|
isFetching: false;
|
|
@@ -557,8 +557,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
557
557
|
includeMainPlatform?: boolean;
|
|
558
558
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
559
559
|
search?: string;
|
|
560
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
561
|
-
currentData?: import("
|
|
560
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
561
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
562
562
|
isUninitialized: false;
|
|
563
563
|
isLoading: false;
|
|
564
564
|
isFetching: false;
|
|
@@ -573,8 +573,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
573
573
|
includeMainPlatform?: boolean;
|
|
574
574
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
575
575
|
search?: string;
|
|
576
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
577
|
-
currentData?: import("
|
|
576
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
577
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
578
578
|
isUninitialized: false;
|
|
579
579
|
isLoading: false;
|
|
580
580
|
isFetching: false;
|
|
@@ -591,7 +591,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
591
591
|
includeMainPlatform?: boolean;
|
|
592
592
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
593
593
|
search?: string;
|
|
594
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
594
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>>;
|
|
595
595
|
}, useLazyGetPerLearnerInfoQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
596
596
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
597
597
|
originalArgs?: undefined | undefined;
|
|
@@ -602,7 +602,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
602
602
|
startedTimeStamp?: undefined | undefined;
|
|
603
603
|
fulfilledTimeStamp?: undefined | undefined;
|
|
604
604
|
} & {
|
|
605
|
-
currentData?: import("
|
|
605
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
606
606
|
isUninitialized: false;
|
|
607
607
|
isLoading: false;
|
|
608
608
|
isFetching: false;
|
|
@@ -617,8 +617,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
617
617
|
includeMainPlatform?: boolean;
|
|
618
618
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
619
619
|
search?: string;
|
|
620
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
621
|
-
currentData?: import("
|
|
620
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
621
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
622
622
|
isUninitialized: false;
|
|
623
623
|
isLoading: false;
|
|
624
624
|
isFetching: false;
|
|
@@ -639,8 +639,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
639
639
|
includeMainPlatform?: boolean;
|
|
640
640
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
641
641
|
search?: string;
|
|
642
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
643
|
-
currentData?: import("
|
|
642
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
643
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
644
644
|
isUninitialized: false;
|
|
645
645
|
isLoading: false;
|
|
646
646
|
isFetching: false;
|
|
@@ -657,8 +657,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
657
657
|
includeMainPlatform?: boolean;
|
|
658
658
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
659
659
|
search?: string;
|
|
660
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
661
|
-
currentData?: import("
|
|
660
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
661
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
662
662
|
isUninitialized: false;
|
|
663
663
|
isLoading: false;
|
|
664
664
|
isFetching: false;
|
|
@@ -673,8 +673,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
673
673
|
includeMainPlatform?: boolean;
|
|
674
674
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
675
675
|
search?: string;
|
|
676
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
677
|
-
currentData?: import("
|
|
676
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
677
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
678
678
|
isUninitialized: false;
|
|
679
679
|
isLoading: false;
|
|
680
680
|
isFetching: false;
|
|
@@ -694,7 +694,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
694
694
|
startedTimeStamp?: undefined | undefined;
|
|
695
695
|
fulfilledTimeStamp?: undefined | undefined;
|
|
696
696
|
} & {
|
|
697
|
-
currentData?: import("
|
|
697
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
698
698
|
isUninitialized: false;
|
|
699
699
|
isLoading: false;
|
|
700
700
|
isFetching: false;
|
|
@@ -709,8 +709,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
709
709
|
includeMainPlatform?: boolean;
|
|
710
710
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
711
711
|
search?: string;
|
|
712
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
713
|
-
currentData?: import("
|
|
712
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
713
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
714
714
|
isUninitialized: false;
|
|
715
715
|
isLoading: false;
|
|
716
716
|
isFetching: false;
|
|
@@ -731,8 +731,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
731
731
|
includeMainPlatform?: boolean;
|
|
732
732
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
733
733
|
search?: string;
|
|
734
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
735
|
-
currentData?: import("
|
|
734
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
735
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
736
736
|
isUninitialized: false;
|
|
737
737
|
isLoading: false;
|
|
738
738
|
isFetching: false;
|
|
@@ -749,8 +749,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
749
749
|
includeMainPlatform?: boolean;
|
|
750
750
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
751
751
|
search?: string;
|
|
752
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
753
|
-
currentData?: import("
|
|
752
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
753
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
754
754
|
isUninitialized: false;
|
|
755
755
|
isLoading: false;
|
|
756
756
|
isFetching: false;
|
|
@@ -765,8 +765,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
765
765
|
includeMainPlatform?: boolean;
|
|
766
766
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
767
767
|
search?: string;
|
|
768
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
769
|
-
currentData?: import("
|
|
768
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>> & {
|
|
769
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI | undefined;
|
|
770
770
|
isUninitialized: false;
|
|
771
771
|
isLoading: false;
|
|
772
772
|
isFetching: false;
|
|
@@ -789,7 +789,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
789
789
|
includeMainPlatform?: boolean;
|
|
790
790
|
meta?: "y" | "yes" | "true" | "True" | "n" | "no" | "false" | "False";
|
|
791
791
|
search?: string;
|
|
792
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
792
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").LearnerInformationAPI, "perLearnerApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
793
793
|
reset: () => void;
|
|
794
794
|
}, {
|
|
795
795
|
lastArg: [{
|
|
@@ -810,7 +810,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
810
810
|
startedTimeStamp?: undefined | undefined;
|
|
811
811
|
fulfilledTimeStamp?: undefined | undefined;
|
|
812
812
|
} & {
|
|
813
|
-
currentData?: import("
|
|
813
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
814
814
|
isUninitialized: false;
|
|
815
815
|
isLoading: false;
|
|
816
816
|
isFetching: false;
|
|
@@ -825,8 +825,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
825
825
|
format?: "json";
|
|
826
826
|
includeMainPlatform?: boolean;
|
|
827
827
|
startDate?: string;
|
|
828
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
829
|
-
currentData?: import("
|
|
828
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
829
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
830
830
|
isUninitialized: false;
|
|
831
831
|
isLoading: false;
|
|
832
832
|
isFetching: false;
|
|
@@ -847,8 +847,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
847
847
|
format?: "json";
|
|
848
848
|
includeMainPlatform?: boolean;
|
|
849
849
|
startDate?: string;
|
|
850
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
851
|
-
currentData?: import("
|
|
850
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
851
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
852
852
|
isUninitialized: false;
|
|
853
853
|
isLoading: false;
|
|
854
854
|
isFetching: false;
|
|
@@ -865,8 +865,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
865
865
|
format?: "json";
|
|
866
866
|
includeMainPlatform?: boolean;
|
|
867
867
|
startDate?: string;
|
|
868
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
869
|
-
currentData?: import("
|
|
868
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
869
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
870
870
|
isUninitialized: false;
|
|
871
871
|
isLoading: false;
|
|
872
872
|
isFetching: false;
|
|
@@ -881,8 +881,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
881
881
|
format?: "json";
|
|
882
882
|
includeMainPlatform?: boolean;
|
|
883
883
|
startDate?: string;
|
|
884
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
885
|
-
currentData?: import("
|
|
884
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
885
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
886
886
|
isUninitialized: false;
|
|
887
887
|
isLoading: false;
|
|
888
888
|
isFetching: false;
|
|
@@ -912,7 +912,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
912
912
|
startedTimeStamp?: undefined | undefined;
|
|
913
913
|
fulfilledTimeStamp?: undefined | undefined;
|
|
914
914
|
} & {
|
|
915
|
-
currentData?: import("
|
|
915
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
916
916
|
isUninitialized: false;
|
|
917
917
|
isLoading: false;
|
|
918
918
|
isFetching: false;
|
|
@@ -927,8 +927,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
927
927
|
format?: "json";
|
|
928
928
|
includeMainPlatform?: boolean;
|
|
929
929
|
startDate?: string;
|
|
930
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
931
|
-
currentData?: import("
|
|
930
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
931
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
932
932
|
isUninitialized: false;
|
|
933
933
|
isLoading: false;
|
|
934
934
|
isFetching: false;
|
|
@@ -949,8 +949,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
949
949
|
format?: "json";
|
|
950
950
|
includeMainPlatform?: boolean;
|
|
951
951
|
startDate?: string;
|
|
952
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
953
|
-
currentData?: import("
|
|
952
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
953
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
954
954
|
isUninitialized: false;
|
|
955
955
|
isLoading: false;
|
|
956
956
|
isFetching: false;
|
|
@@ -967,8 +967,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
967
967
|
format?: "json";
|
|
968
968
|
includeMainPlatform?: boolean;
|
|
969
969
|
startDate?: string;
|
|
970
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
971
|
-
currentData?: import("
|
|
970
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
971
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
972
972
|
isUninitialized: false;
|
|
973
973
|
isLoading: false;
|
|
974
974
|
isFetching: false;
|
|
@@ -983,8 +983,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
983
983
|
format?: "json";
|
|
984
984
|
includeMainPlatform?: boolean;
|
|
985
985
|
startDate?: string;
|
|
986
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
987
|
-
currentData?: import("
|
|
986
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
987
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
988
988
|
isUninitialized: false;
|
|
989
989
|
isLoading: false;
|
|
990
990
|
isFetching: false;
|
|
@@ -1001,7 +1001,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1001
1001
|
format?: "json";
|
|
1002
1002
|
includeMainPlatform?: boolean;
|
|
1003
1003
|
startDate?: string;
|
|
1004
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1004
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>>;
|
|
1005
1005
|
}, useLazyGetOverTimeActivityQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1006
1006
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1007
1007
|
originalArgs?: undefined | undefined;
|
|
@@ -1012,7 +1012,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1012
1012
|
startedTimeStamp?: undefined | undefined;
|
|
1013
1013
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1014
1014
|
} & {
|
|
1015
|
-
currentData?: import("
|
|
1015
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1016
1016
|
isUninitialized: false;
|
|
1017
1017
|
isLoading: false;
|
|
1018
1018
|
isFetching: false;
|
|
@@ -1027,8 +1027,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1027
1027
|
format?: "json";
|
|
1028
1028
|
includeMainPlatform?: boolean;
|
|
1029
1029
|
startDate?: string;
|
|
1030
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1031
|
-
currentData?: import("
|
|
1030
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1031
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1032
1032
|
isUninitialized: false;
|
|
1033
1033
|
isLoading: false;
|
|
1034
1034
|
isFetching: false;
|
|
@@ -1049,8 +1049,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1049
1049
|
format?: "json";
|
|
1050
1050
|
includeMainPlatform?: boolean;
|
|
1051
1051
|
startDate?: string;
|
|
1052
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1053
|
-
currentData?: import("
|
|
1052
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1053
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1054
1054
|
isUninitialized: false;
|
|
1055
1055
|
isLoading: false;
|
|
1056
1056
|
isFetching: false;
|
|
@@ -1067,8 +1067,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1067
1067
|
format?: "json";
|
|
1068
1068
|
includeMainPlatform?: boolean;
|
|
1069
1069
|
startDate?: string;
|
|
1070
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1071
|
-
currentData?: import("
|
|
1070
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1071
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1072
1072
|
isUninitialized: false;
|
|
1073
1073
|
isLoading: false;
|
|
1074
1074
|
isFetching: false;
|
|
@@ -1083,8 +1083,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1083
1083
|
format?: "json";
|
|
1084
1084
|
includeMainPlatform?: boolean;
|
|
1085
1085
|
startDate?: string;
|
|
1086
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1087
|
-
currentData?: import("
|
|
1086
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1087
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1088
1088
|
isUninitialized: false;
|
|
1089
1089
|
isLoading: false;
|
|
1090
1090
|
isFetching: false;
|
|
@@ -1104,7 +1104,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1104
1104
|
startedTimeStamp?: undefined | undefined;
|
|
1105
1105
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1106
1106
|
} & {
|
|
1107
|
-
currentData?: import("
|
|
1107
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1108
1108
|
isUninitialized: false;
|
|
1109
1109
|
isLoading: false;
|
|
1110
1110
|
isFetching: false;
|
|
@@ -1119,8 +1119,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1119
1119
|
format?: "json";
|
|
1120
1120
|
includeMainPlatform?: boolean;
|
|
1121
1121
|
startDate?: string;
|
|
1122
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1123
|
-
currentData?: import("
|
|
1122
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1123
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1124
1124
|
isUninitialized: false;
|
|
1125
1125
|
isLoading: false;
|
|
1126
1126
|
isFetching: false;
|
|
@@ -1141,8 +1141,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1141
1141
|
format?: "json";
|
|
1142
1142
|
includeMainPlatform?: boolean;
|
|
1143
1143
|
startDate?: string;
|
|
1144
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1145
|
-
currentData?: import("
|
|
1144
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1145
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1146
1146
|
isUninitialized: false;
|
|
1147
1147
|
isLoading: false;
|
|
1148
1148
|
isFetching: false;
|
|
@@ -1159,8 +1159,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1159
1159
|
format?: "json";
|
|
1160
1160
|
includeMainPlatform?: boolean;
|
|
1161
1161
|
startDate?: string;
|
|
1162
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1163
|
-
currentData?: import("
|
|
1162
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1163
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1164
1164
|
isUninitialized: false;
|
|
1165
1165
|
isLoading: false;
|
|
1166
1166
|
isFetching: false;
|
|
@@ -1175,8 +1175,8 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1175
1175
|
format?: "json";
|
|
1176
1176
|
includeMainPlatform?: boolean;
|
|
1177
1177
|
startDate?: string;
|
|
1178
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1179
|
-
currentData?: import("
|
|
1178
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>> & {
|
|
1179
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal | undefined;
|
|
1180
1180
|
isUninitialized: false;
|
|
1181
1181
|
isLoading: false;
|
|
1182
1182
|
isFetching: false;
|
|
@@ -1199,7 +1199,7 @@ export declare const useGetPerLearnerActivityQuery: <R extends Record<string, an
|
|
|
1199
1199
|
format?: "json";
|
|
1200
1200
|
includeMainPlatform?: boolean;
|
|
1201
1201
|
startDate?: string;
|
|
1202
|
-
}], import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1202
|
+
}], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "perLearner", import("node_modules/@iblai/iblai-api/dist/types").OverTimeWithTotal, "perLearnerApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1203
1203
|
reset: () => void;
|
|
1204
1204
|
}, {
|
|
1205
1205
|
lastArg: [{
|