@iblai/data-layer 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/index.d.ts +41476 -15632
- package/dist/index.esm.js +6764 -1863
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6947 -1859
- package/dist/index.js.map +1 -1
- package/dist/package.json +19 -17
- package/dist/src/__tests__/constants.test.d.ts +1 -0
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/src/features/analytics/constants.d.ts +56 -1
- package/dist/src/features/analytics/types.d.ts +327 -1
- package/dist/src/features/api-keys/api-slice.d.ts +25 -36
- package/dist/src/features/apps/api-slice.d.ts +25 -36
- package/dist/src/features/auth/api-slice.d.ts +504 -2
- package/dist/src/features/auth/constants.d.ts +13 -1
- package/dist/src/features/auth/types.d.ts +20 -0
- package/dist/src/features/billing/api-slice.d.ts +5 -5
- package/dist/src/features/career/api-slice.d.ts +2345 -180
- package/dist/src/features/catalog/api-slice.d.ts +2260 -244
- package/dist/src/features/chat/api-slice.d.ts +68 -68
- package/dist/src/features/chat-files/api-slice.d.ts +185 -0
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +60 -60
- package/dist/src/features/core/api-slice.d.ts +3793 -26
- package/dist/src/features/core/constants.d.ts +43 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +766 -105
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +22 -22
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +20 -20
- package/dist/src/features/memory/api-slice.d.ts +1437 -530
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +1738 -240
- package/dist/src/features/mentor/constants.d.ts +8 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/src/features/mentor/types.d.ts +39 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
- package/dist/src/features/notifications/api-slice.d.ts +696 -42
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +58 -58
- package/dist/src/features/platform/api-slice.d.ts +321 -167
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +105 -83
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/src/features/search/api-slice.d.ts +39 -39
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +24 -24
- package/dist/src/features/skills/api-slice.d.ts +77 -77
- package/dist/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/src/features/stripe/constants.d.ts +5 -1
- package/dist/src/features/stripe/types.d.ts +10 -0
- package/dist/src/features/tenant/api-slice.d.ts +43 -52
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tools/api-slice.d.ts +64 -20
- package/dist/src/features/training-documents/api-slice.d.ts +534 -27
- package/dist/src/features/user/api-slice.d.ts +124 -124
- package/dist/src/features/user/constants.d.ts +3 -1
- package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
- package/dist/src/features/utils.d.ts +8 -5
- package/dist/src/index.d.ts +78 -47
- package/dist/src/reducers/skills.d.ts +2 -1128
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/tests/setupTests.d.ts +1 -1
- package/package.json +26 -21
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PlatformUserPolicyUpdateRequest, PlatformUsersListResponse } from './types';
|
|
1
2
|
export interface InviteUserRequest {
|
|
2
3
|
email: string;
|
|
3
4
|
platform_key: string;
|
|
@@ -33,19 +34,23 @@ export interface InvitedUserResponse {
|
|
|
33
34
|
username: string;
|
|
34
35
|
}[];
|
|
35
36
|
}
|
|
36
|
-
export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
37
|
+
export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
37
38
|
usersGradesPassed: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
38
39
|
courseId: string;
|
|
39
40
|
org: string;
|
|
40
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
41
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>;
|
|
41
42
|
platformUsers: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
43
|
+
platform_key: string;
|
|
42
44
|
page?: number;
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
platformOrg?: string;
|
|
45
|
+
platform_org?: string;
|
|
46
|
+
page_size?: number;
|
|
46
47
|
query?: string;
|
|
48
|
+
return_policies?: string;
|
|
47
49
|
sort?: string;
|
|
48
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
50
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>;
|
|
51
|
+
updatePlatformUserRoleWithPolicies: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
52
|
+
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
53
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>;
|
|
49
54
|
platformInvitations: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
50
55
|
active?: boolean;
|
|
51
56
|
email?: string;
|
|
@@ -57,7 +62,7 @@ export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<impo
|
|
|
57
62
|
source?: string;
|
|
58
63
|
username?: string;
|
|
59
64
|
verbose?: boolean;
|
|
60
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
65
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>;
|
|
61
66
|
inviteUser: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
62
67
|
requestBody: import("@iblai/iblai-api").PlatformInvitationCreate;
|
|
63
68
|
active?: boolean;
|
|
@@ -70,47 +75,9 @@ export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<impo
|
|
|
70
75
|
source?: string;
|
|
71
76
|
username?: string;
|
|
72
77
|
verbose?: boolean;
|
|
73
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
78
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PlatformInvitationDetail, "platform-api", any>;
|
|
74
79
|
}, "platform-api", string, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
75
|
-
export declare const platformApiReducer:
|
|
76
|
-
usersGradesPassed: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
77
|
-
courseId: string;
|
|
78
|
-
org: string;
|
|
79
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, string, any, "platform-api", any>;
|
|
80
|
-
platformUsers: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
81
|
-
page?: number;
|
|
82
|
-
pageSize?: number;
|
|
83
|
-
platformKey?: string;
|
|
84
|
-
platformOrg?: string;
|
|
85
|
-
query?: string;
|
|
86
|
-
sort?: string;
|
|
87
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, string, import("@iblai/iblai-api").UserPlatformManagementListViewGetResponse, "platform-api", any>;
|
|
88
|
-
platformInvitations: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
89
|
-
active?: boolean;
|
|
90
|
-
email?: string;
|
|
91
|
-
org?: string;
|
|
92
|
-
page?: number;
|
|
93
|
-
pageSize?: number;
|
|
94
|
-
platformKey?: string;
|
|
95
|
-
sort?: string;
|
|
96
|
-
source?: string;
|
|
97
|
-
username?: string;
|
|
98
|
-
verbose?: boolean;
|
|
99
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>;
|
|
100
|
-
inviteUser: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
101
|
-
requestBody: import("@iblai/iblai-api").PlatformInvitationCreate;
|
|
102
|
-
active?: boolean;
|
|
103
|
-
email?: string;
|
|
104
|
-
org?: string;
|
|
105
|
-
page?: number;
|
|
106
|
-
pageSize?: number;
|
|
107
|
-
platformKey?: string;
|
|
108
|
-
sort?: string;
|
|
109
|
-
source?: string;
|
|
110
|
-
username?: string;
|
|
111
|
-
verbose?: boolean;
|
|
112
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, string, import("@iblai/iblai-api").PlatformInvitationDetail, "platform-api", any>;
|
|
113
|
-
}, string, "platform-api">, import("@reduxjs/toolkit").UnknownAction>;
|
|
80
|
+
export declare const platformApiReducer: typeof platformApiSlice.reducer;
|
|
114
81
|
export declare const useUsersGradesPassedQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
115
82
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
116
83
|
originalArgs?: undefined | undefined;
|
|
@@ -132,7 +99,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
132
99
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
133
100
|
courseId: string;
|
|
134
101
|
org: string;
|
|
135
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
102
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
136
103
|
currentData?: any;
|
|
137
104
|
isUninitialized: false;
|
|
138
105
|
isLoading: false;
|
|
@@ -150,7 +117,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
150
117
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
151
118
|
courseId: string;
|
|
152
119
|
org: string;
|
|
153
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
120
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
154
121
|
currentData?: any;
|
|
155
122
|
isUninitialized: false;
|
|
156
123
|
isLoading: false;
|
|
@@ -164,7 +131,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
164
131
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
165
132
|
courseId: string;
|
|
166
133
|
org: string;
|
|
167
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
134
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
168
135
|
currentData?: any;
|
|
169
136
|
isUninitialized: false;
|
|
170
137
|
isLoading: false;
|
|
@@ -176,7 +143,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
176
143
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
177
144
|
courseId: string;
|
|
178
145
|
org: string;
|
|
179
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
146
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
180
147
|
currentData?: any;
|
|
181
148
|
isUninitialized: false;
|
|
182
149
|
isLoading: false;
|
|
@@ -214,7 +181,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
214
181
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
215
182
|
courseId: string;
|
|
216
183
|
org: string;
|
|
217
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
184
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
218
185
|
currentData?: any;
|
|
219
186
|
isUninitialized: false;
|
|
220
187
|
isLoading: false;
|
|
@@ -232,7 +199,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
232
199
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
233
200
|
courseId: string;
|
|
234
201
|
org: string;
|
|
235
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
202
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
236
203
|
currentData?: any;
|
|
237
204
|
isUninitialized: false;
|
|
238
205
|
isLoading: false;
|
|
@@ -246,7 +213,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
246
213
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
247
214
|
courseId: string;
|
|
248
215
|
org: string;
|
|
249
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
216
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
250
217
|
currentData?: any;
|
|
251
218
|
isUninitialized: false;
|
|
252
219
|
isLoading: false;
|
|
@@ -258,7 +225,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
258
225
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
259
226
|
courseId: string;
|
|
260
227
|
org: string;
|
|
261
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
228
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
262
229
|
currentData?: any;
|
|
263
230
|
isUninitialized: false;
|
|
264
231
|
isLoading: false;
|
|
@@ -272,7 +239,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
272
239
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
273
240
|
courseId: string;
|
|
274
241
|
org: string;
|
|
275
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>>;
|
|
276
243
|
}, useLazyPlatformUsersQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
277
244
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
278
245
|
originalArgs?: undefined | undefined;
|
|
@@ -283,7 +250,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
283
250
|
startedTimeStamp?: undefined | undefined;
|
|
284
251
|
fulfilledTimeStamp?: undefined | undefined;
|
|
285
252
|
} & {
|
|
286
|
-
currentData?:
|
|
253
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
287
254
|
isUninitialized: false;
|
|
288
255
|
isLoading: false;
|
|
289
256
|
isFetching: false;
|
|
@@ -292,14 +259,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
292
259
|
}, "isUninitialized"> & {
|
|
293
260
|
isUninitialized: true;
|
|
294
261
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
262
|
+
platform_key: string;
|
|
295
263
|
page?: number;
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
platformOrg?: string;
|
|
264
|
+
platform_org?: string;
|
|
265
|
+
page_size?: number;
|
|
299
266
|
query?: string;
|
|
267
|
+
return_policies?: string;
|
|
300
268
|
sort?: string;
|
|
301
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
302
|
-
currentData?:
|
|
269
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
270
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
303
271
|
isUninitialized: false;
|
|
304
272
|
isLoading: false;
|
|
305
273
|
isFetching: false;
|
|
@@ -314,14 +282,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
314
282
|
isFetching: true;
|
|
315
283
|
error: undefined;
|
|
316
284
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
285
|
+
platform_key: string;
|
|
317
286
|
page?: number;
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
platformOrg?: string;
|
|
287
|
+
platform_org?: string;
|
|
288
|
+
page_size?: number;
|
|
321
289
|
query?: string;
|
|
290
|
+
return_policies?: string;
|
|
322
291
|
sort?: string;
|
|
323
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
324
|
-
currentData?:
|
|
292
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
293
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
325
294
|
isUninitialized: false;
|
|
326
295
|
isLoading: false;
|
|
327
296
|
isFetching: false;
|
|
@@ -332,14 +301,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
332
301
|
isFetching: false;
|
|
333
302
|
error: undefined;
|
|
334
303
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
304
|
+
platform_key: string;
|
|
335
305
|
page?: number;
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
platformOrg?: string;
|
|
306
|
+
platform_org?: string;
|
|
307
|
+
page_size?: number;
|
|
339
308
|
query?: string;
|
|
309
|
+
return_policies?: string;
|
|
340
310
|
sort?: string;
|
|
341
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
342
|
-
currentData?:
|
|
311
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
312
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
343
313
|
isUninitialized: false;
|
|
344
314
|
isLoading: false;
|
|
345
315
|
isFetching: false;
|
|
@@ -348,14 +318,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
348
318
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
349
319
|
isError: true;
|
|
350
320
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
321
|
+
platform_key: string;
|
|
351
322
|
page?: number;
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
platformOrg?: string;
|
|
323
|
+
platform_org?: string;
|
|
324
|
+
page_size?: number;
|
|
355
325
|
query?: string;
|
|
326
|
+
return_policies?: string;
|
|
356
327
|
sort?: string;
|
|
357
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
358
|
-
currentData?:
|
|
328
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
329
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
359
330
|
isUninitialized: false;
|
|
360
331
|
isLoading: false;
|
|
361
332
|
isFetching: false;
|
|
@@ -375,7 +346,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
375
346
|
startedTimeStamp?: undefined | undefined;
|
|
376
347
|
fulfilledTimeStamp?: undefined | undefined;
|
|
377
348
|
} & {
|
|
378
|
-
currentData?:
|
|
349
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
379
350
|
isUninitialized: false;
|
|
380
351
|
isLoading: false;
|
|
381
352
|
isFetching: false;
|
|
@@ -384,14 +355,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
384
355
|
}, "isUninitialized"> & {
|
|
385
356
|
isUninitialized: true;
|
|
386
357
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
358
|
+
platform_key: string;
|
|
387
359
|
page?: number;
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
platformOrg?: string;
|
|
360
|
+
platform_org?: string;
|
|
361
|
+
page_size?: number;
|
|
391
362
|
query?: string;
|
|
363
|
+
return_policies?: string;
|
|
392
364
|
sort?: string;
|
|
393
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
394
|
-
currentData?:
|
|
365
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
366
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
395
367
|
isUninitialized: false;
|
|
396
368
|
isLoading: false;
|
|
397
369
|
isFetching: false;
|
|
@@ -406,14 +378,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
406
378
|
isFetching: true;
|
|
407
379
|
error: undefined;
|
|
408
380
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
381
|
+
platform_key: string;
|
|
409
382
|
page?: number;
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
platformOrg?: string;
|
|
383
|
+
platform_org?: string;
|
|
384
|
+
page_size?: number;
|
|
413
385
|
query?: string;
|
|
386
|
+
return_policies?: string;
|
|
414
387
|
sort?: string;
|
|
415
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
416
|
-
currentData?:
|
|
388
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
389
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
417
390
|
isUninitialized: false;
|
|
418
391
|
isLoading: false;
|
|
419
392
|
isFetching: false;
|
|
@@ -424,14 +397,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
424
397
|
isFetching: false;
|
|
425
398
|
error: undefined;
|
|
426
399
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
400
|
+
platform_key: string;
|
|
427
401
|
page?: number;
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
platformOrg?: string;
|
|
402
|
+
platform_org?: string;
|
|
403
|
+
page_size?: number;
|
|
431
404
|
query?: string;
|
|
405
|
+
return_policies?: string;
|
|
432
406
|
sort?: string;
|
|
433
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
434
|
-
currentData?:
|
|
407
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
408
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
435
409
|
isUninitialized: false;
|
|
436
410
|
isLoading: false;
|
|
437
411
|
isFetching: false;
|
|
@@ -440,14 +414,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
440
414
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
441
415
|
isError: true;
|
|
442
416
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
417
|
+
platform_key: string;
|
|
443
418
|
page?: number;
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
platformOrg?: string;
|
|
419
|
+
platform_org?: string;
|
|
420
|
+
page_size?: number;
|
|
447
421
|
query?: string;
|
|
422
|
+
return_policies?: string;
|
|
448
423
|
sort?: string;
|
|
449
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
450
|
-
currentData?:
|
|
424
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
425
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
451
426
|
isUninitialized: false;
|
|
452
427
|
isLoading: false;
|
|
453
428
|
isFetching: false;
|
|
@@ -457,28 +432,31 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
457
432
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
458
433
|
}) => R) | undefined;
|
|
459
434
|
}, "skip">) | undefined) => [(arg: {
|
|
435
|
+
platform_key: string;
|
|
460
436
|
page?: number;
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
platformOrg?: string;
|
|
437
|
+
platform_org?: string;
|
|
438
|
+
page_size?: number;
|
|
464
439
|
query?: string;
|
|
440
|
+
return_policies?: string;
|
|
465
441
|
sort?: string;
|
|
466
442
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
443
|
+
platform_key: string;
|
|
467
444
|
page?: number;
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
platformOrg?: string;
|
|
445
|
+
platform_org?: string;
|
|
446
|
+
page_size?: number;
|
|
471
447
|
query?: string;
|
|
448
|
+
return_policies?: string;
|
|
472
449
|
sort?: string;
|
|
473
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
450
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>>, [R][R extends any ? 0 : never] & {
|
|
474
451
|
reset: () => void;
|
|
475
452
|
}, {
|
|
476
453
|
lastArg: {
|
|
454
|
+
platform_key: string;
|
|
477
455
|
page?: number;
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
platformOrg?: string;
|
|
456
|
+
platform_org?: string;
|
|
457
|
+
page_size?: number;
|
|
481
458
|
query?: string;
|
|
459
|
+
return_policies?: string;
|
|
482
460
|
sort?: string;
|
|
483
461
|
};
|
|
484
462
|
}], usePlatformInvitationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -510,7 +488,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
510
488
|
source?: string;
|
|
511
489
|
username?: string;
|
|
512
490
|
verbose?: boolean;
|
|
513
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
491
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
514
492
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
515
493
|
isUninitialized: false;
|
|
516
494
|
isLoading: false;
|
|
@@ -536,7 +514,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
536
514
|
source?: string;
|
|
537
515
|
username?: string;
|
|
538
516
|
verbose?: boolean;
|
|
539
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
517
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
540
518
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
541
519
|
isUninitialized: false;
|
|
542
520
|
isLoading: false;
|
|
@@ -558,7 +536,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
558
536
|
source?: string;
|
|
559
537
|
username?: string;
|
|
560
538
|
verbose?: boolean;
|
|
561
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
539
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
562
540
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
563
541
|
isUninitialized: false;
|
|
564
542
|
isLoading: false;
|
|
@@ -578,7 +556,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
578
556
|
source?: string;
|
|
579
557
|
username?: string;
|
|
580
558
|
verbose?: boolean;
|
|
581
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
559
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
582
560
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
583
561
|
isUninitialized: false;
|
|
584
562
|
isLoading: false;
|
|
@@ -632,7 +610,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
632
610
|
source?: string;
|
|
633
611
|
username?: string;
|
|
634
612
|
verbose?: boolean;
|
|
635
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
613
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
636
614
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
637
615
|
isUninitialized: false;
|
|
638
616
|
isLoading: false;
|
|
@@ -658,7 +636,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
658
636
|
source?: string;
|
|
659
637
|
username?: string;
|
|
660
638
|
verbose?: boolean;
|
|
661
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
639
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
662
640
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
663
641
|
isUninitialized: false;
|
|
664
642
|
isLoading: false;
|
|
@@ -680,7 +658,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
680
658
|
source?: string;
|
|
681
659
|
username?: string;
|
|
682
660
|
verbose?: boolean;
|
|
683
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
661
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
684
662
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
685
663
|
isUninitialized: false;
|
|
686
664
|
isLoading: false;
|
|
@@ -700,7 +678,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
700
678
|
source?: string;
|
|
701
679
|
username?: string;
|
|
702
680
|
verbose?: boolean;
|
|
703
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
681
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
704
682
|
currentData?: import("@iblai/iblai-api").PaginatedPlatformInvitation | undefined;
|
|
705
683
|
isUninitialized: false;
|
|
706
684
|
isLoading: false;
|
|
@@ -722,7 +700,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
722
700
|
source?: string;
|
|
723
701
|
username?: string;
|
|
724
702
|
verbose?: boolean;
|
|
725
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
703
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PaginatedPlatformInvitation, "platform-api", any>>;
|
|
726
704
|
}, usePlatformUsersQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
727
705
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
728
706
|
originalArgs?: undefined | undefined;
|
|
@@ -733,7 +711,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
733
711
|
startedTimeStamp?: undefined | undefined;
|
|
734
712
|
fulfilledTimeStamp?: undefined | undefined;
|
|
735
713
|
} & {
|
|
736
|
-
currentData?:
|
|
714
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
737
715
|
isUninitialized: false;
|
|
738
716
|
isLoading: false;
|
|
739
717
|
isFetching: false;
|
|
@@ -742,14 +720,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
742
720
|
}, "isUninitialized"> & {
|
|
743
721
|
isUninitialized: true;
|
|
744
722
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
723
|
+
platform_key: string;
|
|
745
724
|
page?: number;
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
platformOrg?: string;
|
|
725
|
+
platform_org?: string;
|
|
726
|
+
page_size?: number;
|
|
749
727
|
query?: string;
|
|
728
|
+
return_policies?: string;
|
|
750
729
|
sort?: string;
|
|
751
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
752
|
-
currentData?:
|
|
730
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
731
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
753
732
|
isUninitialized: false;
|
|
754
733
|
isLoading: false;
|
|
755
734
|
isFetching: false;
|
|
@@ -764,14 +743,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
764
743
|
isFetching: true;
|
|
765
744
|
error: undefined;
|
|
766
745
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
746
|
+
platform_key: string;
|
|
767
747
|
page?: number;
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
platformOrg?: string;
|
|
748
|
+
platform_org?: string;
|
|
749
|
+
page_size?: number;
|
|
771
750
|
query?: string;
|
|
751
|
+
return_policies?: string;
|
|
772
752
|
sort?: string;
|
|
773
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
774
|
-
currentData?:
|
|
753
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
754
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
775
755
|
isUninitialized: false;
|
|
776
756
|
isLoading: false;
|
|
777
757
|
isFetching: false;
|
|
@@ -782,14 +762,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
782
762
|
isFetching: false;
|
|
783
763
|
error: undefined;
|
|
784
764
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
765
|
+
platform_key: string;
|
|
785
766
|
page?: number;
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
platformOrg?: string;
|
|
767
|
+
platform_org?: string;
|
|
768
|
+
page_size?: number;
|
|
789
769
|
query?: string;
|
|
770
|
+
return_policies?: string;
|
|
790
771
|
sort?: string;
|
|
791
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
792
|
-
currentData?:
|
|
772
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
773
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
793
774
|
isUninitialized: false;
|
|
794
775
|
isLoading: false;
|
|
795
776
|
isFetching: false;
|
|
@@ -798,14 +779,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
798
779
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
799
780
|
isError: true;
|
|
800
781
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
782
|
+
platform_key: string;
|
|
801
783
|
page?: number;
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
platformOrg?: string;
|
|
784
|
+
platform_org?: string;
|
|
785
|
+
page_size?: number;
|
|
805
786
|
query?: string;
|
|
787
|
+
return_policies?: string;
|
|
806
788
|
sort?: string;
|
|
807
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
808
|
-
currentData?:
|
|
789
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
790
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
809
791
|
isUninitialized: false;
|
|
810
792
|
isLoading: false;
|
|
811
793
|
isFetching: false;
|
|
@@ -814,11 +796,12 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
814
796
|
}, "error">>)>> & {
|
|
815
797
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
816
798
|
}>(arg: {
|
|
799
|
+
platform_key: string;
|
|
817
800
|
page?: number;
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
platformOrg?: string;
|
|
801
|
+
platform_org?: string;
|
|
802
|
+
page_size?: number;
|
|
821
803
|
query?: string;
|
|
804
|
+
return_policies?: string;
|
|
822
805
|
sort?: string;
|
|
823
806
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
824
807
|
skip?: boolean;
|
|
@@ -835,7 +818,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
835
818
|
startedTimeStamp?: undefined | undefined;
|
|
836
819
|
fulfilledTimeStamp?: undefined | undefined;
|
|
837
820
|
} & {
|
|
838
|
-
currentData?:
|
|
821
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
839
822
|
isUninitialized: false;
|
|
840
823
|
isLoading: false;
|
|
841
824
|
isFetching: false;
|
|
@@ -844,14 +827,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
844
827
|
}, "isUninitialized"> & {
|
|
845
828
|
isUninitialized: true;
|
|
846
829
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
830
|
+
platform_key: string;
|
|
847
831
|
page?: number;
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
platformOrg?: string;
|
|
832
|
+
platform_org?: string;
|
|
833
|
+
page_size?: number;
|
|
851
834
|
query?: string;
|
|
835
|
+
return_policies?: string;
|
|
852
836
|
sort?: string;
|
|
853
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
854
|
-
currentData?:
|
|
837
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
838
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
855
839
|
isUninitialized: false;
|
|
856
840
|
isLoading: false;
|
|
857
841
|
isFetching: false;
|
|
@@ -866,14 +850,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
866
850
|
isFetching: true;
|
|
867
851
|
error: undefined;
|
|
868
852
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
853
|
+
platform_key: string;
|
|
869
854
|
page?: number;
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
platformOrg?: string;
|
|
855
|
+
platform_org?: string;
|
|
856
|
+
page_size?: number;
|
|
873
857
|
query?: string;
|
|
858
|
+
return_policies?: string;
|
|
874
859
|
sort?: string;
|
|
875
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
876
|
-
currentData?:
|
|
860
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
861
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
877
862
|
isUninitialized: false;
|
|
878
863
|
isLoading: false;
|
|
879
864
|
isFetching: false;
|
|
@@ -884,14 +869,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
884
869
|
isFetching: false;
|
|
885
870
|
error: undefined;
|
|
886
871
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
872
|
+
platform_key: string;
|
|
887
873
|
page?: number;
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
platformOrg?: string;
|
|
874
|
+
platform_org?: string;
|
|
875
|
+
page_size?: number;
|
|
891
876
|
query?: string;
|
|
877
|
+
return_policies?: string;
|
|
892
878
|
sort?: string;
|
|
893
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
894
|
-
currentData?:
|
|
879
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
880
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
895
881
|
isUninitialized: false;
|
|
896
882
|
isLoading: false;
|
|
897
883
|
isFetching: false;
|
|
@@ -900,14 +886,15 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
900
886
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
901
887
|
isError: true;
|
|
902
888
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
889
|
+
platform_key: string;
|
|
903
890
|
page?: number;
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
platformOrg?: string;
|
|
891
|
+
platform_org?: string;
|
|
892
|
+
page_size?: number;
|
|
907
893
|
query?: string;
|
|
894
|
+
return_policies?: string;
|
|
908
895
|
sort?: string;
|
|
909
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
910
|
-
currentData?:
|
|
896
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
897
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
911
898
|
isUninitialized: false;
|
|
912
899
|
isLoading: false;
|
|
913
900
|
isFetching: false;
|
|
@@ -918,13 +905,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
918
905
|
}) => R) | undefined;
|
|
919
906
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
920
907
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
908
|
+
platform_key: string;
|
|
921
909
|
page?: number;
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
platformOrg?: string;
|
|
910
|
+
platform_org?: string;
|
|
911
|
+
page_size?: number;
|
|
925
912
|
query?: string;
|
|
913
|
+
return_policies?: string;
|
|
926
914
|
sort?: string;
|
|
927
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
915
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>>;
|
|
928
916
|
}, useInviteUserMutation: <R extends Record<string, any> = ({
|
|
929
917
|
requestId?: undefined;
|
|
930
918
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -1106,7 +1094,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1106
1094
|
source?: string;
|
|
1107
1095
|
username?: string;
|
|
1108
1096
|
verbose?: boolean;
|
|
1109
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1097
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("@iblai/iblai-api").PlatformInvitationDetail, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1110
1098
|
originalArgs?: {
|
|
1111
1099
|
requestBody: import("@iblai/iblai-api").PlatformInvitationCreate;
|
|
1112
1100
|
active?: boolean;
|
|
@@ -1121,4 +1109,170 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1121
1109
|
verbose?: boolean;
|
|
1122
1110
|
} | undefined;
|
|
1123
1111
|
reset: () => void;
|
|
1112
|
+
}], useUpdatePlatformUserRoleWithPoliciesMutation: <R extends Record<string, any> = ({
|
|
1113
|
+
requestId?: undefined;
|
|
1114
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1115
|
+
data?: undefined;
|
|
1116
|
+
error?: undefined;
|
|
1117
|
+
endpointName?: string;
|
|
1118
|
+
startedTimeStamp?: undefined;
|
|
1119
|
+
fulfilledTimeStamp?: undefined;
|
|
1120
|
+
} & {
|
|
1121
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1122
|
+
isUninitialized: true;
|
|
1123
|
+
isLoading: false;
|
|
1124
|
+
isSuccess: false;
|
|
1125
|
+
isError: false;
|
|
1126
|
+
}) | ({
|
|
1127
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1128
|
+
} & Omit<{
|
|
1129
|
+
requestId: string;
|
|
1130
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1131
|
+
error?: unknown;
|
|
1132
|
+
endpointName: string;
|
|
1133
|
+
startedTimeStamp: number;
|
|
1134
|
+
fulfilledTimeStamp?: number;
|
|
1135
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1136
|
+
requestId: string;
|
|
1137
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1138
|
+
error?: unknown;
|
|
1139
|
+
endpointName: string;
|
|
1140
|
+
startedTimeStamp: number;
|
|
1141
|
+
fulfilledTimeStamp?: number;
|
|
1142
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1143
|
+
error: undefined;
|
|
1144
|
+
} & {
|
|
1145
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1146
|
+
isUninitialized: false;
|
|
1147
|
+
isLoading: false;
|
|
1148
|
+
isSuccess: true;
|
|
1149
|
+
isError: false;
|
|
1150
|
+
}) | ({
|
|
1151
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1152
|
+
} & {
|
|
1153
|
+
requestId: string;
|
|
1154
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1155
|
+
error?: unknown;
|
|
1156
|
+
endpointName: string;
|
|
1157
|
+
startedTimeStamp: number;
|
|
1158
|
+
fulfilledTimeStamp?: number;
|
|
1159
|
+
} & {
|
|
1160
|
+
data?: undefined;
|
|
1161
|
+
} & {
|
|
1162
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1163
|
+
isUninitialized: false;
|
|
1164
|
+
isLoading: true;
|
|
1165
|
+
isSuccess: false;
|
|
1166
|
+
isError: false;
|
|
1167
|
+
}) | ({
|
|
1168
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1169
|
+
} & Omit<{
|
|
1170
|
+
requestId: string;
|
|
1171
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1172
|
+
error?: unknown;
|
|
1173
|
+
endpointName: string;
|
|
1174
|
+
startedTimeStamp: number;
|
|
1175
|
+
fulfilledTimeStamp?: number;
|
|
1176
|
+
}, "error"> & Required<Pick<{
|
|
1177
|
+
requestId: string;
|
|
1178
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1179
|
+
error?: unknown;
|
|
1180
|
+
endpointName: string;
|
|
1181
|
+
startedTimeStamp: number;
|
|
1182
|
+
fulfilledTimeStamp?: number;
|
|
1183
|
+
}, "error">> & {
|
|
1184
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1185
|
+
isUninitialized: false;
|
|
1186
|
+
isLoading: false;
|
|
1187
|
+
isSuccess: false;
|
|
1188
|
+
isError: true;
|
|
1189
|
+
})>(options?: {
|
|
1190
|
+
selectFromResult?: ((state: ({
|
|
1191
|
+
requestId?: undefined;
|
|
1192
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1193
|
+
data?: undefined;
|
|
1194
|
+
error?: undefined;
|
|
1195
|
+
endpointName?: string;
|
|
1196
|
+
startedTimeStamp?: undefined;
|
|
1197
|
+
fulfilledTimeStamp?: undefined;
|
|
1198
|
+
} & {
|
|
1199
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1200
|
+
isUninitialized: true;
|
|
1201
|
+
isLoading: false;
|
|
1202
|
+
isSuccess: false;
|
|
1203
|
+
isError: false;
|
|
1204
|
+
}) | ({
|
|
1205
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1206
|
+
} & Omit<{
|
|
1207
|
+
requestId: string;
|
|
1208
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1209
|
+
error?: unknown;
|
|
1210
|
+
endpointName: string;
|
|
1211
|
+
startedTimeStamp: number;
|
|
1212
|
+
fulfilledTimeStamp?: number;
|
|
1213
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1214
|
+
requestId: string;
|
|
1215
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1216
|
+
error?: unknown;
|
|
1217
|
+
endpointName: string;
|
|
1218
|
+
startedTimeStamp: number;
|
|
1219
|
+
fulfilledTimeStamp?: number;
|
|
1220
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1221
|
+
error: undefined;
|
|
1222
|
+
} & {
|
|
1223
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1224
|
+
isUninitialized: false;
|
|
1225
|
+
isLoading: false;
|
|
1226
|
+
isSuccess: true;
|
|
1227
|
+
isError: false;
|
|
1228
|
+
}) | ({
|
|
1229
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1230
|
+
} & {
|
|
1231
|
+
requestId: string;
|
|
1232
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1233
|
+
error?: unknown;
|
|
1234
|
+
endpointName: string;
|
|
1235
|
+
startedTimeStamp: number;
|
|
1236
|
+
fulfilledTimeStamp?: number;
|
|
1237
|
+
} & {
|
|
1238
|
+
data?: undefined;
|
|
1239
|
+
} & {
|
|
1240
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1241
|
+
isUninitialized: false;
|
|
1242
|
+
isLoading: true;
|
|
1243
|
+
isSuccess: false;
|
|
1244
|
+
isError: false;
|
|
1245
|
+
}) | ({
|
|
1246
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1247
|
+
} & Omit<{
|
|
1248
|
+
requestId: string;
|
|
1249
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1250
|
+
error?: unknown;
|
|
1251
|
+
endpointName: string;
|
|
1252
|
+
startedTimeStamp: number;
|
|
1253
|
+
fulfilledTimeStamp?: number;
|
|
1254
|
+
}, "error"> & Required<Pick<{
|
|
1255
|
+
requestId: string;
|
|
1256
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1257
|
+
error?: unknown;
|
|
1258
|
+
endpointName: string;
|
|
1259
|
+
startedTimeStamp: number;
|
|
1260
|
+
fulfilledTimeStamp?: number;
|
|
1261
|
+
}, "error">> & {
|
|
1262
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1263
|
+
isUninitialized: false;
|
|
1264
|
+
isLoading: false;
|
|
1265
|
+
isSuccess: false;
|
|
1266
|
+
isError: true;
|
|
1267
|
+
})) => R) | undefined;
|
|
1268
|
+
fixedCacheKey?: string;
|
|
1269
|
+
} | undefined) => readonly [(arg: {
|
|
1270
|
+
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
1271
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1272
|
+
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
1273
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1274
|
+
originalArgs?: {
|
|
1275
|
+
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
1276
|
+
} | undefined;
|
|
1277
|
+
reset: () => void;
|
|
1124
1278
|
}];
|