@iblai/web-utils 1.1.2 → 1.1.4
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 +7 -1
- package/dist/data-layer/src/features/analytics/constants.d.ts +6 -6
- package/dist/data-layer/src/features/analytics/types.d.ts +9 -0
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/data-layer/src/features/apps/api-slice.d.ts +72 -24
- package/dist/data-layer/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/data-layer/src/features/artifacts/constants.d.ts +42 -0
- package/dist/data-layer/src/features/artifacts/types.d.ts +37 -0
- package/dist/data-layer/src/features/auth/types.d.ts +1 -1
- package/dist/data-layer/src/features/billing/api-slice.d.ts +15 -5
- package/dist/data-layer/src/features/billing/constants.d.ts +16 -0
- package/dist/data-layer/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/data-layer/src/features/billing/types.d.ts +35 -0
- package/dist/data-layer/src/features/career/api-slice.d.ts +342 -114
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/data-layer/src/features/chat/api-slice.d.ts +204 -68
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/data-layer/src/features/core/api-slice.d.ts +1143 -134
- package/dist/data-layer/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +3706 -146
- package/dist/data-layer/src/features/credentials/constants.d.ts +9 -1
- package/dist/data-layer/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/data-layer/src/features/credentials/types.d.ts +14 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/data-layer/src/features/llms/api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/data-layer/src/features/mcp/constants.d.ts +57 -0
- package/dist/data-layer/src/features/mcp/types.d.ts +176 -0
- package/dist/data-layer/src/features/memory/types.d.ts +1 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1789 -473
- package/dist/data-layer/src/features/mentor/constants.d.ts +7 -1
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +7 -1
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/data-layer/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/data-layer/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/data-layer/src/features/platform/types.d.ts +13 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/data-layer/src/features/reports/api-slice.d.ts +145 -41
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/data-layer/src/features/search/api-slice.d.ts +117 -39
- package/dist/data-layer/src/features/search/constants.d.ts +10 -0
- package/dist/data-layer/src/features/search/types.d.ts +72 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/data-layer/src/features/skills/api-slice.d.ts +231 -77
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/data-layer/src/features/tools/api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/data-layer/src/index.d.ts +6 -0
- package/dist/index.d.ts +367 -33
- package/dist/index.esm.js +7622 -3934
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7647 -3931
- package/dist/index.js.map +1 -1
- package/dist/package.json +22 -12
- package/dist/web-utils/src/__tests__/index.mobile.test.d.ts +7 -0
- package/dist/web-utils/src/__tests__/index.web.test.d.ts +8 -0
- package/dist/web-utils/src/constants/__tests__/chat.test.d.ts +1 -0
- package/dist/web-utils/src/constants/chat.d.ts +1 -1
- package/dist/web-utils/src/features/chat/__tests__/slice.test.d.ts +1 -0
- package/dist/web-utils/src/features/chat/slice.d.ts +37 -2
- package/dist/web-utils/src/features/csv/combine-csv.d.ts +35 -0
- package/dist/web-utils/src/features/csv/index.d.ts +1 -0
- package/dist/web-utils/src/features/files/__tests__/filesSlice.test.d.ts +1 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/hoc/index.d.ts +2 -0
- package/dist/web-utils/src/hoc/with-permissions.d.ts +44 -0
- package/dist/web-utils/src/hooks/__tests__/use-mentor-settings.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/ollama-client.d.ts +57 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +10 -4
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +59 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-chat.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +2 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription-v2/constants.d.ts +5 -0
- package/dist/web-utils/src/hooks/subscription-v2/use-subscription-handler.d.ts +56 -1
- package/dist/web-utils/src/hooks/tenant-metadata/__tests__/config-loader.test.d.ts +10 -0
- package/dist/web-utils/src/hooks/tenant-metadata/__tests__/use-tenant-metadata.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/index.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +130 -10
- package/dist/web-utils/src/index.web.d.ts +174 -12
- package/dist/web-utils/src/providers/__tests__/mentor-provider.test.d.ts +1 -0
- package/dist/web-utils/src/providers/__tests__/tenant-provider.test.d.ts +1 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +5 -2
- package/dist/web-utils/src/providers/mentor-provider.d.ts +2 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +7 -2
- package/dist/web-utils/src/types/index.d.ts +1 -0
- package/dist/web-utils/src/types/subscription.d.ts +21 -0
- package/dist/web-utils/src/utils/__tests__/auth.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/constants.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/helpers.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/platform.test.d.ts +1 -0
- package/dist/web-utils/src/utils/constants.d.ts +1 -0
- package/dist/web-utils/src/utils/data/__tests__/advanced-tab.test.d.ts +1 -0
- package/dist/web-utils/src/utils/helpers.d.ts +6 -0
- package/dist/web-utils/src/utils/index.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +1 -0
- package/dist/web-utils/tests/hooks/chat/use-mentor-tools.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription-v2/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-mentor-settings.test.d.ts +1 -0
- package/dist/web-utils/tests/providers/mentor-provider.test.d.ts +1 -0
- package/dist/web-utils/tests/providers/tenant-provider.test.d.ts +1 -0
- package/dist/web-utils/tests/utils/helpers.test.d.ts +1 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -1
- package/package.json +22 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PlatformUserPolicyUpdateRequest, PlatformUsersListResponse } from './types';
|
|
1
|
+
import { PlatformUserGroupDetailsResponse, PlatformUserPolicyUpdateRequest, PlatformUsersListResponse } from './types';
|
|
2
2
|
export interface InviteUserRequest {
|
|
3
3
|
email: string;
|
|
4
4
|
platform_key: string;
|
|
@@ -34,11 +34,15 @@ export interface InvitedUserResponse {
|
|
|
34
34
|
username: string;
|
|
35
35
|
}[];
|
|
36
36
|
}
|
|
37
|
-
export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
37
|
+
export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
38
|
+
attempt?: number;
|
|
39
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
38
40
|
usersGradesPassed: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
39
41
|
courseId: string;
|
|
40
42
|
org: string;
|
|
41
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
43
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
44
|
+
attempt?: number;
|
|
45
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>;
|
|
42
46
|
platformUsers: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
43
47
|
platform_key: string;
|
|
44
48
|
page?: number;
|
|
@@ -47,10 +51,47 @@ export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<impo
|
|
|
47
51
|
query?: string;
|
|
48
52
|
return_policies?: string;
|
|
49
53
|
sort?: string;
|
|
50
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
54
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
55
|
+
attempt?: number;
|
|
56
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>;
|
|
57
|
+
platformUserGroups: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
58
|
+
includeUsers?: boolean;
|
|
59
|
+
name?: string;
|
|
60
|
+
page?: number;
|
|
61
|
+
pageSize?: number;
|
|
62
|
+
platformKey?: string;
|
|
63
|
+
requiredAction?: string;
|
|
64
|
+
withPermissions?: boolean;
|
|
65
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
66
|
+
attempt?: number;
|
|
67
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>;
|
|
68
|
+
createPlatformUserGroup: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
69
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
70
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
71
|
+
attempt?: number;
|
|
72
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").UserGroup, "platform-api", any>;
|
|
73
|
+
updatePlatformUserGroup: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
74
|
+
id: number;
|
|
75
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
76
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
77
|
+
attempt?: number;
|
|
78
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").UserGroup, "platform-api", any>;
|
|
79
|
+
deletePlatformUserGroup: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
80
|
+
id: number;
|
|
81
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
82
|
+
attempt?: number;
|
|
83
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, void, "platform-api", any>;
|
|
84
|
+
getPlatformUserGroupDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
85
|
+
id: number;
|
|
86
|
+
platformKey: string;
|
|
87
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
88
|
+
attempt?: number;
|
|
89
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>;
|
|
51
90
|
updatePlatformUserRoleWithPolicies: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
52
91
|
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
53
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
92
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
93
|
+
attempt?: number;
|
|
94
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>;
|
|
54
95
|
platformInvitations: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
55
96
|
active?: boolean;
|
|
56
97
|
email?: string;
|
|
@@ -62,7 +103,9 @@ export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<impo
|
|
|
62
103
|
source?: string;
|
|
63
104
|
username?: string;
|
|
64
105
|
verbose?: boolean;
|
|
65
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
107
|
+
attempt?: number;
|
|
108
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>;
|
|
66
109
|
inviteUser: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
67
110
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
68
111
|
active?: boolean;
|
|
@@ -75,7 +118,9 @@ export declare const platformApiSlice: import("@reduxjs/toolkit/query").Api<impo
|
|
|
75
118
|
source?: string;
|
|
76
119
|
username?: string;
|
|
77
120
|
verbose?: boolean;
|
|
78
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
121
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
122
|
+
attempt?: number;
|
|
123
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail, "platform-api", any>;
|
|
79
124
|
}, "platform-api", string, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
80
125
|
export declare const platformApiReducer: typeof platformApiSlice.reducer;
|
|
81
126
|
export declare const useUsersGradesPassedQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -99,7 +144,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
99
144
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
100
145
|
courseId: string;
|
|
101
146
|
org: string;
|
|
102
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
147
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
148
|
+
attempt?: number;
|
|
149
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
103
150
|
currentData?: any;
|
|
104
151
|
isUninitialized: false;
|
|
105
152
|
isLoading: false;
|
|
@@ -117,7 +164,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
117
164
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
118
165
|
courseId: string;
|
|
119
166
|
org: string;
|
|
120
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
167
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
168
|
+
attempt?: number;
|
|
169
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
121
170
|
currentData?: any;
|
|
122
171
|
isUninitialized: false;
|
|
123
172
|
isLoading: false;
|
|
@@ -131,7 +180,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
131
180
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
132
181
|
courseId: string;
|
|
133
182
|
org: string;
|
|
134
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
183
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
184
|
+
attempt?: number;
|
|
185
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
135
186
|
currentData?: any;
|
|
136
187
|
isUninitialized: false;
|
|
137
188
|
isLoading: false;
|
|
@@ -143,7 +194,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
143
194
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
144
195
|
courseId: string;
|
|
145
196
|
org: string;
|
|
146
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
197
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
198
|
+
attempt?: number;
|
|
199
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
147
200
|
currentData?: any;
|
|
148
201
|
isUninitialized: false;
|
|
149
202
|
isLoading: false;
|
|
@@ -181,7 +234,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
181
234
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
182
235
|
courseId: string;
|
|
183
236
|
org: string;
|
|
184
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
237
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
238
|
+
attempt?: number;
|
|
239
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
185
240
|
currentData?: any;
|
|
186
241
|
isUninitialized: false;
|
|
187
242
|
isLoading: false;
|
|
@@ -199,7 +254,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
199
254
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
200
255
|
courseId: string;
|
|
201
256
|
org: string;
|
|
202
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
257
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
258
|
+
attempt?: number;
|
|
259
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
203
260
|
currentData?: any;
|
|
204
261
|
isUninitialized: false;
|
|
205
262
|
isLoading: false;
|
|
@@ -213,7 +270,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
213
270
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
214
271
|
courseId: string;
|
|
215
272
|
org: string;
|
|
216
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
273
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
274
|
+
attempt?: number;
|
|
275
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
217
276
|
currentData?: any;
|
|
218
277
|
isUninitialized: false;
|
|
219
278
|
isLoading: false;
|
|
@@ -225,7 +284,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
225
284
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
226
285
|
courseId: string;
|
|
227
286
|
org: string;
|
|
228
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
287
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
288
|
+
attempt?: number;
|
|
289
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>> & {
|
|
229
290
|
currentData?: any;
|
|
230
291
|
isUninitialized: false;
|
|
231
292
|
isLoading: false;
|
|
@@ -239,7 +300,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
239
300
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
240
301
|
courseId: string;
|
|
241
302
|
org: string;
|
|
242
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
303
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
304
|
+
attempt?: number;
|
|
305
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, any, "platform-api", any>>;
|
|
243
306
|
}, useLazyPlatformUsersQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
244
307
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
245
308
|
originalArgs?: undefined | undefined;
|
|
@@ -266,7 +329,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
266
329
|
query?: string;
|
|
267
330
|
return_policies?: string;
|
|
268
331
|
sort?: string;
|
|
269
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
332
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
333
|
+
attempt?: number;
|
|
334
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
270
335
|
currentData?: PlatformUsersListResponse | undefined;
|
|
271
336
|
isUninitialized: false;
|
|
272
337
|
isLoading: false;
|
|
@@ -289,7 +354,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
289
354
|
query?: string;
|
|
290
355
|
return_policies?: string;
|
|
291
356
|
sort?: string;
|
|
292
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
357
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
358
|
+
attempt?: number;
|
|
359
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
293
360
|
currentData?: PlatformUsersListResponse | undefined;
|
|
294
361
|
isUninitialized: false;
|
|
295
362
|
isLoading: false;
|
|
@@ -308,7 +375,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
308
375
|
query?: string;
|
|
309
376
|
return_policies?: string;
|
|
310
377
|
sort?: string;
|
|
311
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
378
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
379
|
+
attempt?: number;
|
|
380
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
312
381
|
currentData?: PlatformUsersListResponse | undefined;
|
|
313
382
|
isUninitialized: false;
|
|
314
383
|
isLoading: false;
|
|
@@ -325,7 +394,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
325
394
|
query?: string;
|
|
326
395
|
return_policies?: string;
|
|
327
396
|
sort?: string;
|
|
328
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
397
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
398
|
+
attempt?: number;
|
|
399
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
329
400
|
currentData?: PlatformUsersListResponse | undefined;
|
|
330
401
|
isUninitialized: false;
|
|
331
402
|
isLoading: false;
|
|
@@ -362,7 +433,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
362
433
|
query?: string;
|
|
363
434
|
return_policies?: string;
|
|
364
435
|
sort?: string;
|
|
365
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
436
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
437
|
+
attempt?: number;
|
|
438
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
366
439
|
currentData?: PlatformUsersListResponse | undefined;
|
|
367
440
|
isUninitialized: false;
|
|
368
441
|
isLoading: false;
|
|
@@ -385,7 +458,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
385
458
|
query?: string;
|
|
386
459
|
return_policies?: string;
|
|
387
460
|
sort?: string;
|
|
388
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
461
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
462
|
+
attempt?: number;
|
|
463
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
389
464
|
currentData?: PlatformUsersListResponse | undefined;
|
|
390
465
|
isUninitialized: false;
|
|
391
466
|
isLoading: false;
|
|
@@ -404,7 +479,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
404
479
|
query?: string;
|
|
405
480
|
return_policies?: string;
|
|
406
481
|
sort?: string;
|
|
407
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
482
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
483
|
+
attempt?: number;
|
|
484
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
408
485
|
currentData?: PlatformUsersListResponse | undefined;
|
|
409
486
|
isUninitialized: false;
|
|
410
487
|
isLoading: false;
|
|
@@ -421,7 +498,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
421
498
|
query?: string;
|
|
422
499
|
return_policies?: string;
|
|
423
500
|
sort?: string;
|
|
424
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
501
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
502
|
+
attempt?: number;
|
|
503
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
425
504
|
currentData?: PlatformUsersListResponse | undefined;
|
|
426
505
|
isUninitialized: false;
|
|
427
506
|
isLoading: false;
|
|
@@ -447,7 +526,9 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
447
526
|
query?: string;
|
|
448
527
|
return_policies?: string;
|
|
449
528
|
sort?: string;
|
|
450
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
529
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
530
|
+
attempt?: number;
|
|
531
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>>, [R][R extends any ? 0 : never] & {
|
|
451
532
|
reset: () => void;
|
|
452
533
|
}, {
|
|
453
534
|
lastArg: {
|
|
@@ -459,7 +540,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
459
540
|
return_policies?: string;
|
|
460
541
|
sort?: string;
|
|
461
542
|
};
|
|
462
|
-
}],
|
|
543
|
+
}], useLazyPlatformUserGroupsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
463
544
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
464
545
|
originalArgs?: undefined | undefined;
|
|
465
546
|
data?: undefined | undefined;
|
|
@@ -469,7 +550,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
469
550
|
startedTimeStamp?: undefined | undefined;
|
|
470
551
|
fulfilledTimeStamp?: undefined | undefined;
|
|
471
552
|
} & {
|
|
472
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
553
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
473
554
|
isUninitialized: false;
|
|
474
555
|
isLoading: false;
|
|
475
556
|
isFetching: false;
|
|
@@ -478,18 +559,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
478
559
|
}, "isUninitialized"> & {
|
|
479
560
|
isUninitialized: true;
|
|
480
561
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
org?: string;
|
|
562
|
+
includeUsers?: boolean;
|
|
563
|
+
name?: string;
|
|
484
564
|
page?: number;
|
|
485
565
|
pageSize?: number;
|
|
486
566
|
platformKey?: string;
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
}
|
|
492
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
567
|
+
requiredAction?: string;
|
|
568
|
+
withPermissions?: boolean;
|
|
569
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
570
|
+
attempt?: number;
|
|
571
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
572
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
493
573
|
isUninitialized: false;
|
|
494
574
|
isLoading: false;
|
|
495
575
|
isFetching: false;
|
|
@@ -504,18 +584,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
504
584
|
isFetching: true;
|
|
505
585
|
error: undefined;
|
|
506
586
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
org?: string;
|
|
587
|
+
includeUsers?: boolean;
|
|
588
|
+
name?: string;
|
|
510
589
|
page?: number;
|
|
511
590
|
pageSize?: number;
|
|
512
591
|
platformKey?: string;
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
}
|
|
518
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
592
|
+
requiredAction?: string;
|
|
593
|
+
withPermissions?: boolean;
|
|
594
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
595
|
+
attempt?: number;
|
|
596
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
597
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
519
598
|
isUninitialized: false;
|
|
520
599
|
isLoading: false;
|
|
521
600
|
isFetching: false;
|
|
@@ -526,18 +605,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
526
605
|
isFetching: false;
|
|
527
606
|
error: undefined;
|
|
528
607
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
org?: string;
|
|
608
|
+
includeUsers?: boolean;
|
|
609
|
+
name?: string;
|
|
532
610
|
page?: number;
|
|
533
611
|
pageSize?: number;
|
|
534
612
|
platformKey?: string;
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
}
|
|
540
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
613
|
+
requiredAction?: string;
|
|
614
|
+
withPermissions?: boolean;
|
|
615
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
616
|
+
attempt?: number;
|
|
617
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
618
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
541
619
|
isUninitialized: false;
|
|
542
620
|
isLoading: false;
|
|
543
621
|
isFetching: false;
|
|
@@ -546,18 +624,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
546
624
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
547
625
|
isError: true;
|
|
548
626
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
org?: string;
|
|
627
|
+
includeUsers?: boolean;
|
|
628
|
+
name?: string;
|
|
552
629
|
page?: number;
|
|
553
630
|
pageSize?: number;
|
|
554
631
|
platformKey?: string;
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
}
|
|
560
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
632
|
+
requiredAction?: string;
|
|
633
|
+
withPermissions?: boolean;
|
|
634
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
635
|
+
attempt?: number;
|
|
636
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
637
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
561
638
|
isUninitialized: false;
|
|
562
639
|
isLoading: false;
|
|
563
640
|
isFetching: false;
|
|
@@ -565,21 +642,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
565
642
|
isError: false;
|
|
566
643
|
}, "error">>)>> & {
|
|
567
644
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
568
|
-
}>(
|
|
569
|
-
active?: boolean;
|
|
570
|
-
email?: string;
|
|
571
|
-
org?: string;
|
|
572
|
-
page?: number;
|
|
573
|
-
pageSize?: number;
|
|
574
|
-
platformKey?: string;
|
|
575
|
-
sort?: string;
|
|
576
|
-
source?: string;
|
|
577
|
-
username?: string;
|
|
578
|
-
verbose?: boolean;
|
|
579
|
-
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
580
|
-
skip?: boolean;
|
|
581
|
-
refetchOnMountOrArgChange?: boolean | number;
|
|
582
|
-
} & {
|
|
645
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
583
646
|
skip?: boolean;
|
|
584
647
|
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
585
648
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -591,7 +654,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
591
654
|
startedTimeStamp?: undefined | undefined;
|
|
592
655
|
fulfilledTimeStamp?: undefined | undefined;
|
|
593
656
|
} & {
|
|
594
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
657
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
595
658
|
isUninitialized: false;
|
|
596
659
|
isLoading: false;
|
|
597
660
|
isFetching: false;
|
|
@@ -600,18 +663,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
600
663
|
}, "isUninitialized"> & {
|
|
601
664
|
isUninitialized: true;
|
|
602
665
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
org?: string;
|
|
666
|
+
includeUsers?: boolean;
|
|
667
|
+
name?: string;
|
|
606
668
|
page?: number;
|
|
607
669
|
pageSize?: number;
|
|
608
670
|
platformKey?: string;
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
}
|
|
614
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
671
|
+
requiredAction?: string;
|
|
672
|
+
withPermissions?: boolean;
|
|
673
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
674
|
+
attempt?: number;
|
|
675
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
676
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
615
677
|
isUninitialized: false;
|
|
616
678
|
isLoading: false;
|
|
617
679
|
isFetching: false;
|
|
@@ -626,18 +688,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
626
688
|
isFetching: true;
|
|
627
689
|
error: undefined;
|
|
628
690
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
org?: string;
|
|
691
|
+
includeUsers?: boolean;
|
|
692
|
+
name?: string;
|
|
632
693
|
page?: number;
|
|
633
694
|
pageSize?: number;
|
|
634
695
|
platformKey?: string;
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
}
|
|
640
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
696
|
+
requiredAction?: string;
|
|
697
|
+
withPermissions?: boolean;
|
|
698
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
699
|
+
attempt?: number;
|
|
700
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
701
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
641
702
|
isUninitialized: false;
|
|
642
703
|
isLoading: false;
|
|
643
704
|
isFetching: false;
|
|
@@ -648,18 +709,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
648
709
|
isFetching: false;
|
|
649
710
|
error: undefined;
|
|
650
711
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
org?: string;
|
|
712
|
+
includeUsers?: boolean;
|
|
713
|
+
name?: string;
|
|
654
714
|
page?: number;
|
|
655
715
|
pageSize?: number;
|
|
656
716
|
platformKey?: string;
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
}
|
|
662
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
717
|
+
requiredAction?: string;
|
|
718
|
+
withPermissions?: boolean;
|
|
719
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
720
|
+
attempt?: number;
|
|
721
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
722
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
663
723
|
isUninitialized: false;
|
|
664
724
|
isLoading: false;
|
|
665
725
|
isFetching: false;
|
|
@@ -668,18 +728,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
668
728
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
669
729
|
isError: true;
|
|
670
730
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
org?: string;
|
|
731
|
+
includeUsers?: boolean;
|
|
732
|
+
name?: string;
|
|
674
733
|
page?: number;
|
|
675
734
|
pageSize?: number;
|
|
676
735
|
platformKey?: string;
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
}
|
|
682
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
736
|
+
requiredAction?: string;
|
|
737
|
+
withPermissions?: boolean;
|
|
738
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
739
|
+
attempt?: number;
|
|
740
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
741
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
683
742
|
isUninitialized: false;
|
|
684
743
|
isLoading: false;
|
|
685
744
|
isFetching: false;
|
|
@@ -688,20 +747,37 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
688
747
|
}, "error">>)>> & {
|
|
689
748
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
690
749
|
}) => R) | undefined;
|
|
691
|
-
}) | undefined) => [
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
750
|
+
}, "skip">) | undefined) => [(arg: {
|
|
751
|
+
includeUsers?: boolean;
|
|
752
|
+
name?: string;
|
|
753
|
+
page?: number;
|
|
754
|
+
pageSize?: number;
|
|
755
|
+
platformKey?: string;
|
|
756
|
+
requiredAction?: string;
|
|
757
|
+
withPermissions?: boolean;
|
|
758
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
759
|
+
includeUsers?: boolean;
|
|
760
|
+
name?: string;
|
|
761
|
+
page?: number;
|
|
762
|
+
pageSize?: number;
|
|
763
|
+
platformKey?: string;
|
|
764
|
+
requiredAction?: string;
|
|
765
|
+
withPermissions?: boolean;
|
|
766
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
767
|
+
attempt?: number;
|
|
768
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>>, [R][R extends any ? 0 : never] & {
|
|
769
|
+
reset: () => void;
|
|
770
|
+
}, {
|
|
771
|
+
lastArg: {
|
|
772
|
+
includeUsers?: boolean;
|
|
773
|
+
name?: string;
|
|
696
774
|
page?: number;
|
|
697
775
|
pageSize?: number;
|
|
698
776
|
platformKey?: string;
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>>;
|
|
704
|
-
}, usePlatformUsersQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
777
|
+
requiredAction?: string;
|
|
778
|
+
withPermissions?: boolean;
|
|
779
|
+
};
|
|
780
|
+
}], usePlatformUserGroupsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
705
781
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
706
782
|
originalArgs?: undefined | undefined;
|
|
707
783
|
data?: undefined | undefined;
|
|
@@ -711,7 +787,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
711
787
|
startedTimeStamp?: undefined | undefined;
|
|
712
788
|
fulfilledTimeStamp?: undefined | undefined;
|
|
713
789
|
} & {
|
|
714
|
-
currentData?:
|
|
790
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
715
791
|
isUninitialized: false;
|
|
716
792
|
isLoading: false;
|
|
717
793
|
isFetching: false;
|
|
@@ -720,15 +796,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
720
796
|
}, "isUninitialized"> & {
|
|
721
797
|
isUninitialized: true;
|
|
722
798
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
723
|
-
|
|
799
|
+
includeUsers?: boolean;
|
|
800
|
+
name?: string;
|
|
724
801
|
page?: number;
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
802
|
+
pageSize?: number;
|
|
803
|
+
platformKey?: string;
|
|
804
|
+
requiredAction?: string;
|
|
805
|
+
withPermissions?: boolean;
|
|
806
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
807
|
+
attempt?: number;
|
|
808
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
809
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
732
810
|
isUninitialized: false;
|
|
733
811
|
isLoading: false;
|
|
734
812
|
isFetching: false;
|
|
@@ -743,15 +821,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
743
821
|
isFetching: true;
|
|
744
822
|
error: undefined;
|
|
745
823
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
746
|
-
|
|
824
|
+
includeUsers?: boolean;
|
|
825
|
+
name?: string;
|
|
747
826
|
page?: number;
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
827
|
+
pageSize?: number;
|
|
828
|
+
platformKey?: string;
|
|
829
|
+
requiredAction?: string;
|
|
830
|
+
withPermissions?: boolean;
|
|
831
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
832
|
+
attempt?: number;
|
|
833
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
834
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
755
835
|
isUninitialized: false;
|
|
756
836
|
isLoading: false;
|
|
757
837
|
isFetching: false;
|
|
@@ -762,15 +842,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
762
842
|
isFetching: false;
|
|
763
843
|
error: undefined;
|
|
764
844
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
765
|
-
|
|
845
|
+
includeUsers?: boolean;
|
|
846
|
+
name?: string;
|
|
766
847
|
page?: number;
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
848
|
+
pageSize?: number;
|
|
849
|
+
platformKey?: string;
|
|
850
|
+
requiredAction?: string;
|
|
851
|
+
withPermissions?: boolean;
|
|
852
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
853
|
+
attempt?: number;
|
|
854
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
855
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
774
856
|
isUninitialized: false;
|
|
775
857
|
isLoading: false;
|
|
776
858
|
isFetching: false;
|
|
@@ -779,15 +861,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
779
861
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
780
862
|
isError: true;
|
|
781
863
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
782
|
-
|
|
864
|
+
includeUsers?: boolean;
|
|
865
|
+
name?: string;
|
|
783
866
|
page?: number;
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
867
|
+
pageSize?: number;
|
|
868
|
+
platformKey?: string;
|
|
869
|
+
requiredAction?: string;
|
|
870
|
+
withPermissions?: boolean;
|
|
871
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
872
|
+
attempt?: number;
|
|
873
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
874
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
791
875
|
isUninitialized: false;
|
|
792
876
|
isLoading: false;
|
|
793
877
|
isFetching: false;
|
|
@@ -796,13 +880,13 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
796
880
|
}, "error">>)>> & {
|
|
797
881
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
798
882
|
}>(arg: {
|
|
799
|
-
|
|
883
|
+
includeUsers?: boolean;
|
|
884
|
+
name?: string;
|
|
800
885
|
page?: number;
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
sort?: string;
|
|
886
|
+
pageSize?: number;
|
|
887
|
+
platformKey?: string;
|
|
888
|
+
requiredAction?: string;
|
|
889
|
+
withPermissions?: boolean;
|
|
806
890
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
807
891
|
skip?: boolean;
|
|
808
892
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -818,7 +902,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
818
902
|
startedTimeStamp?: undefined | undefined;
|
|
819
903
|
fulfilledTimeStamp?: undefined | undefined;
|
|
820
904
|
} & {
|
|
821
|
-
currentData?:
|
|
905
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
822
906
|
isUninitialized: false;
|
|
823
907
|
isLoading: false;
|
|
824
908
|
isFetching: false;
|
|
@@ -827,15 +911,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
827
911
|
}, "isUninitialized"> & {
|
|
828
912
|
isUninitialized: true;
|
|
829
913
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
830
|
-
|
|
914
|
+
includeUsers?: boolean;
|
|
915
|
+
name?: string;
|
|
831
916
|
page?: number;
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
917
|
+
pageSize?: number;
|
|
918
|
+
platformKey?: string;
|
|
919
|
+
requiredAction?: string;
|
|
920
|
+
withPermissions?: boolean;
|
|
921
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
922
|
+
attempt?: number;
|
|
923
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
924
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
839
925
|
isUninitialized: false;
|
|
840
926
|
isLoading: false;
|
|
841
927
|
isFetching: false;
|
|
@@ -850,15 +936,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
850
936
|
isFetching: true;
|
|
851
937
|
error: undefined;
|
|
852
938
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
853
|
-
|
|
939
|
+
includeUsers?: boolean;
|
|
940
|
+
name?: string;
|
|
854
941
|
page?: number;
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
942
|
+
pageSize?: number;
|
|
943
|
+
platformKey?: string;
|
|
944
|
+
requiredAction?: string;
|
|
945
|
+
withPermissions?: boolean;
|
|
946
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
947
|
+
attempt?: number;
|
|
948
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
949
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
862
950
|
isUninitialized: false;
|
|
863
951
|
isLoading: false;
|
|
864
952
|
isFetching: false;
|
|
@@ -869,15 +957,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
869
957
|
isFetching: false;
|
|
870
958
|
error: undefined;
|
|
871
959
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
872
|
-
|
|
960
|
+
includeUsers?: boolean;
|
|
961
|
+
name?: string;
|
|
873
962
|
page?: number;
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
963
|
+
pageSize?: number;
|
|
964
|
+
platformKey?: string;
|
|
965
|
+
requiredAction?: string;
|
|
966
|
+
withPermissions?: boolean;
|
|
967
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
968
|
+
attempt?: number;
|
|
969
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
970
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
881
971
|
isUninitialized: false;
|
|
882
972
|
isLoading: false;
|
|
883
973
|
isFetching: false;
|
|
@@ -886,15 +976,17 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
886
976
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
887
977
|
isError: true;
|
|
888
978
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
889
|
-
|
|
979
|
+
includeUsers?: boolean;
|
|
980
|
+
name?: string;
|
|
890
981
|
page?: number;
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
982
|
+
pageSize?: number;
|
|
983
|
+
platformKey?: string;
|
|
984
|
+
requiredAction?: string;
|
|
985
|
+
withPermissions?: boolean;
|
|
986
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
987
|
+
attempt?: number;
|
|
988
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>> & {
|
|
989
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList | undefined;
|
|
898
990
|
isUninitialized: false;
|
|
899
991
|
isLoading: false;
|
|
900
992
|
isFetching: false;
|
|
@@ -905,57 +997,1083 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
905
997
|
}) => R) | undefined;
|
|
906
998
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
907
999
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
908
|
-
|
|
1000
|
+
includeUsers?: boolean;
|
|
1001
|
+
name?: string;
|
|
909
1002
|
page?: number;
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
}
|
|
917
|
-
|
|
1003
|
+
pageSize?: number;
|
|
1004
|
+
platformKey?: string;
|
|
1005
|
+
requiredAction?: string;
|
|
1006
|
+
withPermissions?: boolean;
|
|
1007
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1008
|
+
attempt?: number;
|
|
1009
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedUserGroupList, "platform-api", any>>;
|
|
1010
|
+
}, usePlatformInvitationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
918
1011
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
1012
|
+
originalArgs?: undefined | undefined;
|
|
1013
|
+
data?: undefined | undefined;
|
|
1014
|
+
error?: undefined | undefined;
|
|
1015
|
+
requestId?: undefined | undefined;
|
|
1016
|
+
endpointName?: string | undefined;
|
|
1017
|
+
startedTimeStamp?: undefined | undefined;
|
|
1018
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
924
1019
|
} & {
|
|
925
|
-
|
|
926
|
-
isUninitialized:
|
|
1020
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1021
|
+
isUninitialized: false;
|
|
927
1022
|
isLoading: false;
|
|
1023
|
+
isFetching: false;
|
|
928
1024
|
isSuccess: false;
|
|
929
1025
|
isError: false;
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
error: undefined;
|
|
948
|
-
} & {
|
|
949
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1026
|
+
}, "isUninitialized"> & {
|
|
1027
|
+
isUninitialized: true;
|
|
1028
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1029
|
+
active?: boolean;
|
|
1030
|
+
email?: string;
|
|
1031
|
+
org?: string;
|
|
1032
|
+
page?: number;
|
|
1033
|
+
pageSize?: number;
|
|
1034
|
+
platformKey?: string;
|
|
1035
|
+
sort?: string;
|
|
1036
|
+
source?: string;
|
|
1037
|
+
username?: string;
|
|
1038
|
+
verbose?: boolean;
|
|
1039
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1040
|
+
attempt?: number;
|
|
1041
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1042
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
950
1043
|
isUninitialized: false;
|
|
951
1044
|
isLoading: false;
|
|
952
|
-
|
|
1045
|
+
isFetching: false;
|
|
1046
|
+
isSuccess: false;
|
|
1047
|
+
isError: false;
|
|
1048
|
+
}, {
|
|
1049
|
+
isLoading: true;
|
|
1050
|
+
isFetching: boolean;
|
|
1051
|
+
data: undefined;
|
|
1052
|
+
} | ({
|
|
1053
|
+
isSuccess: true;
|
|
1054
|
+
isFetching: true;
|
|
1055
|
+
error: undefined;
|
|
1056
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1057
|
+
active?: boolean;
|
|
1058
|
+
email?: string;
|
|
1059
|
+
org?: string;
|
|
1060
|
+
page?: number;
|
|
1061
|
+
pageSize?: number;
|
|
1062
|
+
platformKey?: string;
|
|
1063
|
+
sort?: string;
|
|
1064
|
+
source?: string;
|
|
1065
|
+
username?: string;
|
|
1066
|
+
verbose?: boolean;
|
|
1067
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1068
|
+
attempt?: number;
|
|
1069
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1070
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1071
|
+
isUninitialized: false;
|
|
1072
|
+
isLoading: false;
|
|
1073
|
+
isFetching: false;
|
|
1074
|
+
isSuccess: false;
|
|
1075
|
+
isError: false;
|
|
1076
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1077
|
+
isSuccess: true;
|
|
1078
|
+
isFetching: false;
|
|
1079
|
+
error: undefined;
|
|
1080
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1081
|
+
active?: boolean;
|
|
1082
|
+
email?: string;
|
|
1083
|
+
org?: string;
|
|
1084
|
+
page?: number;
|
|
1085
|
+
pageSize?: number;
|
|
1086
|
+
platformKey?: string;
|
|
1087
|
+
sort?: string;
|
|
1088
|
+
source?: string;
|
|
1089
|
+
username?: string;
|
|
1090
|
+
verbose?: boolean;
|
|
1091
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1092
|
+
attempt?: number;
|
|
1093
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1094
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1095
|
+
isUninitialized: false;
|
|
1096
|
+
isLoading: false;
|
|
1097
|
+
isFetching: false;
|
|
1098
|
+
isSuccess: false;
|
|
1099
|
+
isError: false;
|
|
1100
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1101
|
+
isError: true;
|
|
1102
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1103
|
+
active?: boolean;
|
|
1104
|
+
email?: string;
|
|
1105
|
+
org?: string;
|
|
1106
|
+
page?: number;
|
|
1107
|
+
pageSize?: number;
|
|
1108
|
+
platformKey?: string;
|
|
1109
|
+
sort?: string;
|
|
1110
|
+
source?: string;
|
|
1111
|
+
username?: string;
|
|
1112
|
+
verbose?: boolean;
|
|
1113
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1114
|
+
attempt?: number;
|
|
1115
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1116
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1117
|
+
isUninitialized: false;
|
|
1118
|
+
isLoading: false;
|
|
1119
|
+
isFetching: false;
|
|
1120
|
+
isSuccess: false;
|
|
1121
|
+
isError: false;
|
|
1122
|
+
}, "error">>)>> & {
|
|
1123
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1124
|
+
}>(arg: {
|
|
1125
|
+
active?: boolean;
|
|
1126
|
+
email?: string;
|
|
1127
|
+
org?: string;
|
|
1128
|
+
page?: number;
|
|
1129
|
+
pageSize?: number;
|
|
1130
|
+
platformKey?: string;
|
|
1131
|
+
sort?: string;
|
|
1132
|
+
source?: string;
|
|
1133
|
+
username?: string;
|
|
1134
|
+
verbose?: boolean;
|
|
1135
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1136
|
+
skip?: boolean;
|
|
1137
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
1138
|
+
} & {
|
|
1139
|
+
skip?: boolean;
|
|
1140
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1141
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1142
|
+
originalArgs?: undefined | undefined;
|
|
1143
|
+
data?: undefined | undefined;
|
|
1144
|
+
error?: undefined | undefined;
|
|
1145
|
+
requestId?: undefined | undefined;
|
|
1146
|
+
endpointName?: string | undefined;
|
|
1147
|
+
startedTimeStamp?: undefined | undefined;
|
|
1148
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1149
|
+
} & {
|
|
1150
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1151
|
+
isUninitialized: false;
|
|
1152
|
+
isLoading: false;
|
|
1153
|
+
isFetching: false;
|
|
1154
|
+
isSuccess: false;
|
|
1155
|
+
isError: false;
|
|
1156
|
+
}, "isUninitialized"> & {
|
|
1157
|
+
isUninitialized: true;
|
|
1158
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1159
|
+
active?: boolean;
|
|
1160
|
+
email?: string;
|
|
1161
|
+
org?: string;
|
|
1162
|
+
page?: number;
|
|
1163
|
+
pageSize?: number;
|
|
1164
|
+
platformKey?: string;
|
|
1165
|
+
sort?: string;
|
|
1166
|
+
source?: string;
|
|
1167
|
+
username?: string;
|
|
1168
|
+
verbose?: boolean;
|
|
1169
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1170
|
+
attempt?: number;
|
|
1171
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1172
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1173
|
+
isUninitialized: false;
|
|
1174
|
+
isLoading: false;
|
|
1175
|
+
isFetching: false;
|
|
1176
|
+
isSuccess: false;
|
|
1177
|
+
isError: false;
|
|
1178
|
+
}, {
|
|
1179
|
+
isLoading: true;
|
|
1180
|
+
isFetching: boolean;
|
|
1181
|
+
data: undefined;
|
|
1182
|
+
} | ({
|
|
1183
|
+
isSuccess: true;
|
|
1184
|
+
isFetching: true;
|
|
1185
|
+
error: undefined;
|
|
1186
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1187
|
+
active?: boolean;
|
|
1188
|
+
email?: string;
|
|
1189
|
+
org?: string;
|
|
1190
|
+
page?: number;
|
|
1191
|
+
pageSize?: number;
|
|
1192
|
+
platformKey?: string;
|
|
1193
|
+
sort?: string;
|
|
1194
|
+
source?: string;
|
|
1195
|
+
username?: string;
|
|
1196
|
+
verbose?: boolean;
|
|
1197
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1198
|
+
attempt?: number;
|
|
1199
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1200
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1201
|
+
isUninitialized: false;
|
|
1202
|
+
isLoading: false;
|
|
1203
|
+
isFetching: false;
|
|
1204
|
+
isSuccess: false;
|
|
1205
|
+
isError: false;
|
|
1206
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1207
|
+
isSuccess: true;
|
|
1208
|
+
isFetching: false;
|
|
1209
|
+
error: undefined;
|
|
1210
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1211
|
+
active?: boolean;
|
|
1212
|
+
email?: string;
|
|
1213
|
+
org?: string;
|
|
1214
|
+
page?: number;
|
|
1215
|
+
pageSize?: number;
|
|
1216
|
+
platformKey?: string;
|
|
1217
|
+
sort?: string;
|
|
1218
|
+
source?: string;
|
|
1219
|
+
username?: string;
|
|
1220
|
+
verbose?: boolean;
|
|
1221
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1222
|
+
attempt?: number;
|
|
1223
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1224
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1225
|
+
isUninitialized: false;
|
|
1226
|
+
isLoading: false;
|
|
1227
|
+
isFetching: false;
|
|
1228
|
+
isSuccess: false;
|
|
1229
|
+
isError: false;
|
|
1230
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1231
|
+
isError: true;
|
|
1232
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1233
|
+
active?: boolean;
|
|
1234
|
+
email?: string;
|
|
1235
|
+
org?: string;
|
|
1236
|
+
page?: number;
|
|
1237
|
+
pageSize?: number;
|
|
1238
|
+
platformKey?: string;
|
|
1239
|
+
sort?: string;
|
|
1240
|
+
source?: string;
|
|
1241
|
+
username?: string;
|
|
1242
|
+
verbose?: boolean;
|
|
1243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1244
|
+
attempt?: number;
|
|
1245
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>> & {
|
|
1246
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
1247
|
+
isUninitialized: false;
|
|
1248
|
+
isLoading: false;
|
|
1249
|
+
isFetching: false;
|
|
1250
|
+
isSuccess: false;
|
|
1251
|
+
isError: false;
|
|
1252
|
+
}, "error">>)>> & {
|
|
1253
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1254
|
+
}) => R) | undefined;
|
|
1255
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1256
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1257
|
+
active?: boolean;
|
|
1258
|
+
email?: string;
|
|
1259
|
+
org?: string;
|
|
1260
|
+
page?: number;
|
|
1261
|
+
pageSize?: number;
|
|
1262
|
+
platformKey?: string;
|
|
1263
|
+
sort?: string;
|
|
1264
|
+
source?: string;
|
|
1265
|
+
username?: string;
|
|
1266
|
+
verbose?: boolean;
|
|
1267
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1268
|
+
attempt?: number;
|
|
1269
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "platform-api", any>>;
|
|
1270
|
+
}, usePlatformUsersQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1271
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1272
|
+
originalArgs?: undefined | undefined;
|
|
1273
|
+
data?: undefined | undefined;
|
|
1274
|
+
error?: undefined | undefined;
|
|
1275
|
+
requestId?: undefined | undefined;
|
|
1276
|
+
endpointName?: string | undefined;
|
|
1277
|
+
startedTimeStamp?: undefined | undefined;
|
|
1278
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1279
|
+
} & {
|
|
1280
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1281
|
+
isUninitialized: false;
|
|
1282
|
+
isLoading: false;
|
|
1283
|
+
isFetching: false;
|
|
1284
|
+
isSuccess: false;
|
|
1285
|
+
isError: false;
|
|
1286
|
+
}, "isUninitialized"> & {
|
|
1287
|
+
isUninitialized: true;
|
|
1288
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1289
|
+
platform_key: string;
|
|
1290
|
+
page?: number;
|
|
1291
|
+
platform_org?: string;
|
|
1292
|
+
page_size?: number;
|
|
1293
|
+
query?: string;
|
|
1294
|
+
return_policies?: string;
|
|
1295
|
+
sort?: string;
|
|
1296
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1297
|
+
attempt?: number;
|
|
1298
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1299
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1300
|
+
isUninitialized: false;
|
|
1301
|
+
isLoading: false;
|
|
1302
|
+
isFetching: false;
|
|
1303
|
+
isSuccess: false;
|
|
1304
|
+
isError: false;
|
|
1305
|
+
}, {
|
|
1306
|
+
isLoading: true;
|
|
1307
|
+
isFetching: boolean;
|
|
1308
|
+
data: undefined;
|
|
1309
|
+
} | ({
|
|
1310
|
+
isSuccess: true;
|
|
1311
|
+
isFetching: true;
|
|
1312
|
+
error: undefined;
|
|
1313
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1314
|
+
platform_key: string;
|
|
1315
|
+
page?: number;
|
|
1316
|
+
platform_org?: string;
|
|
1317
|
+
page_size?: number;
|
|
1318
|
+
query?: string;
|
|
1319
|
+
return_policies?: string;
|
|
1320
|
+
sort?: string;
|
|
1321
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1322
|
+
attempt?: number;
|
|
1323
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1324
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1325
|
+
isUninitialized: false;
|
|
1326
|
+
isLoading: false;
|
|
1327
|
+
isFetching: false;
|
|
1328
|
+
isSuccess: false;
|
|
1329
|
+
isError: false;
|
|
1330
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1331
|
+
isSuccess: true;
|
|
1332
|
+
isFetching: false;
|
|
1333
|
+
error: undefined;
|
|
1334
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1335
|
+
platform_key: string;
|
|
1336
|
+
page?: number;
|
|
1337
|
+
platform_org?: string;
|
|
1338
|
+
page_size?: number;
|
|
1339
|
+
query?: string;
|
|
1340
|
+
return_policies?: string;
|
|
1341
|
+
sort?: string;
|
|
1342
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1343
|
+
attempt?: number;
|
|
1344
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1345
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1346
|
+
isUninitialized: false;
|
|
1347
|
+
isLoading: false;
|
|
1348
|
+
isFetching: false;
|
|
1349
|
+
isSuccess: false;
|
|
1350
|
+
isError: false;
|
|
1351
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1352
|
+
isError: true;
|
|
1353
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1354
|
+
platform_key: string;
|
|
1355
|
+
page?: number;
|
|
1356
|
+
platform_org?: string;
|
|
1357
|
+
page_size?: number;
|
|
1358
|
+
query?: string;
|
|
1359
|
+
return_policies?: string;
|
|
1360
|
+
sort?: string;
|
|
1361
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1362
|
+
attempt?: number;
|
|
1363
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1364
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1365
|
+
isUninitialized: false;
|
|
1366
|
+
isLoading: false;
|
|
1367
|
+
isFetching: false;
|
|
1368
|
+
isSuccess: false;
|
|
1369
|
+
isError: false;
|
|
1370
|
+
}, "error">>)>> & {
|
|
1371
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1372
|
+
}>(arg: {
|
|
1373
|
+
platform_key: string;
|
|
1374
|
+
page?: number;
|
|
1375
|
+
platform_org?: string;
|
|
1376
|
+
page_size?: number;
|
|
1377
|
+
query?: string;
|
|
1378
|
+
return_policies?: string;
|
|
1379
|
+
sort?: string;
|
|
1380
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1381
|
+
skip?: boolean;
|
|
1382
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
1383
|
+
} & {
|
|
1384
|
+
skip?: boolean;
|
|
1385
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1386
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1387
|
+
originalArgs?: undefined | undefined;
|
|
1388
|
+
data?: undefined | undefined;
|
|
1389
|
+
error?: undefined | undefined;
|
|
1390
|
+
requestId?: undefined | undefined;
|
|
1391
|
+
endpointName?: string | undefined;
|
|
1392
|
+
startedTimeStamp?: undefined | undefined;
|
|
1393
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1394
|
+
} & {
|
|
1395
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1396
|
+
isUninitialized: false;
|
|
1397
|
+
isLoading: false;
|
|
1398
|
+
isFetching: false;
|
|
1399
|
+
isSuccess: false;
|
|
1400
|
+
isError: false;
|
|
1401
|
+
}, "isUninitialized"> & {
|
|
1402
|
+
isUninitialized: true;
|
|
1403
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1404
|
+
platform_key: string;
|
|
1405
|
+
page?: number;
|
|
1406
|
+
platform_org?: string;
|
|
1407
|
+
page_size?: number;
|
|
1408
|
+
query?: string;
|
|
1409
|
+
return_policies?: string;
|
|
1410
|
+
sort?: string;
|
|
1411
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1412
|
+
attempt?: number;
|
|
1413
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1414
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1415
|
+
isUninitialized: false;
|
|
1416
|
+
isLoading: false;
|
|
1417
|
+
isFetching: false;
|
|
1418
|
+
isSuccess: false;
|
|
1419
|
+
isError: false;
|
|
1420
|
+
}, {
|
|
1421
|
+
isLoading: true;
|
|
1422
|
+
isFetching: boolean;
|
|
1423
|
+
data: undefined;
|
|
1424
|
+
} | ({
|
|
1425
|
+
isSuccess: true;
|
|
1426
|
+
isFetching: true;
|
|
1427
|
+
error: undefined;
|
|
1428
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1429
|
+
platform_key: string;
|
|
1430
|
+
page?: number;
|
|
1431
|
+
platform_org?: string;
|
|
1432
|
+
page_size?: number;
|
|
1433
|
+
query?: string;
|
|
1434
|
+
return_policies?: string;
|
|
1435
|
+
sort?: string;
|
|
1436
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1437
|
+
attempt?: number;
|
|
1438
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1439
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1440
|
+
isUninitialized: false;
|
|
1441
|
+
isLoading: false;
|
|
1442
|
+
isFetching: false;
|
|
1443
|
+
isSuccess: false;
|
|
1444
|
+
isError: false;
|
|
1445
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1446
|
+
isSuccess: true;
|
|
1447
|
+
isFetching: false;
|
|
1448
|
+
error: undefined;
|
|
1449
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1450
|
+
platform_key: string;
|
|
1451
|
+
page?: number;
|
|
1452
|
+
platform_org?: string;
|
|
1453
|
+
page_size?: number;
|
|
1454
|
+
query?: string;
|
|
1455
|
+
return_policies?: string;
|
|
1456
|
+
sort?: string;
|
|
1457
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1458
|
+
attempt?: number;
|
|
1459
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1460
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1461
|
+
isUninitialized: false;
|
|
1462
|
+
isLoading: false;
|
|
1463
|
+
isFetching: false;
|
|
1464
|
+
isSuccess: false;
|
|
1465
|
+
isError: false;
|
|
1466
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1467
|
+
isError: true;
|
|
1468
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1469
|
+
platform_key: string;
|
|
1470
|
+
page?: number;
|
|
1471
|
+
platform_org?: string;
|
|
1472
|
+
page_size?: number;
|
|
1473
|
+
query?: string;
|
|
1474
|
+
return_policies?: string;
|
|
1475
|
+
sort?: string;
|
|
1476
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1477
|
+
attempt?: number;
|
|
1478
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>> & {
|
|
1479
|
+
currentData?: PlatformUsersListResponse | undefined;
|
|
1480
|
+
isUninitialized: false;
|
|
1481
|
+
isLoading: false;
|
|
1482
|
+
isFetching: false;
|
|
1483
|
+
isSuccess: false;
|
|
1484
|
+
isError: false;
|
|
1485
|
+
}, "error">>)>> & {
|
|
1486
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1487
|
+
}) => R) | undefined;
|
|
1488
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1489
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1490
|
+
platform_key: string;
|
|
1491
|
+
page?: number;
|
|
1492
|
+
platform_org?: string;
|
|
1493
|
+
page_size?: number;
|
|
1494
|
+
query?: string;
|
|
1495
|
+
return_policies?: string;
|
|
1496
|
+
sort?: string;
|
|
1497
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1498
|
+
attempt?: number;
|
|
1499
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>>;
|
|
1500
|
+
}, useInviteUserMutation: <R extends Record<string, any> = ({
|
|
1501
|
+
requestId?: undefined;
|
|
1502
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1503
|
+
data?: undefined;
|
|
1504
|
+
error?: undefined;
|
|
1505
|
+
endpointName?: string;
|
|
1506
|
+
startedTimeStamp?: undefined;
|
|
1507
|
+
fulfilledTimeStamp?: undefined;
|
|
1508
|
+
} & {
|
|
1509
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1510
|
+
isUninitialized: true;
|
|
1511
|
+
isLoading: false;
|
|
1512
|
+
isSuccess: false;
|
|
1513
|
+
isError: false;
|
|
1514
|
+
}) | ({
|
|
1515
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1516
|
+
} & Omit<{
|
|
1517
|
+
requestId: string;
|
|
1518
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1519
|
+
error?: unknown;
|
|
1520
|
+
endpointName: string;
|
|
1521
|
+
startedTimeStamp: number;
|
|
1522
|
+
fulfilledTimeStamp?: number;
|
|
1523
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1524
|
+
requestId: string;
|
|
1525
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1526
|
+
error?: unknown;
|
|
1527
|
+
endpointName: string;
|
|
1528
|
+
startedTimeStamp: number;
|
|
1529
|
+
fulfilledTimeStamp?: number;
|
|
1530
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1531
|
+
error: undefined;
|
|
1532
|
+
} & {
|
|
1533
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1534
|
+
isUninitialized: false;
|
|
1535
|
+
isLoading: false;
|
|
1536
|
+
isSuccess: true;
|
|
1537
|
+
isError: false;
|
|
1538
|
+
}) | ({
|
|
1539
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1540
|
+
} & {
|
|
1541
|
+
requestId: string;
|
|
1542
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1543
|
+
error?: unknown;
|
|
1544
|
+
endpointName: string;
|
|
1545
|
+
startedTimeStamp: number;
|
|
1546
|
+
fulfilledTimeStamp?: number;
|
|
1547
|
+
} & {
|
|
1548
|
+
data?: undefined;
|
|
1549
|
+
} & {
|
|
1550
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1551
|
+
isUninitialized: false;
|
|
1552
|
+
isLoading: true;
|
|
1553
|
+
isSuccess: false;
|
|
1554
|
+
isError: false;
|
|
1555
|
+
}) | ({
|
|
1556
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1557
|
+
} & Omit<{
|
|
1558
|
+
requestId: string;
|
|
1559
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1560
|
+
error?: unknown;
|
|
1561
|
+
endpointName: string;
|
|
1562
|
+
startedTimeStamp: number;
|
|
1563
|
+
fulfilledTimeStamp?: number;
|
|
1564
|
+
}, "error"> & Required<Pick<{
|
|
1565
|
+
requestId: string;
|
|
1566
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1567
|
+
error?: unknown;
|
|
1568
|
+
endpointName: string;
|
|
1569
|
+
startedTimeStamp: number;
|
|
1570
|
+
fulfilledTimeStamp?: number;
|
|
1571
|
+
}, "error">> & {
|
|
1572
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1573
|
+
isUninitialized: false;
|
|
1574
|
+
isLoading: false;
|
|
1575
|
+
isSuccess: false;
|
|
1576
|
+
isError: true;
|
|
1577
|
+
})>(options?: {
|
|
1578
|
+
selectFromResult?: ((state: ({
|
|
1579
|
+
requestId?: undefined;
|
|
1580
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1581
|
+
data?: undefined;
|
|
1582
|
+
error?: undefined;
|
|
1583
|
+
endpointName?: string;
|
|
1584
|
+
startedTimeStamp?: undefined;
|
|
1585
|
+
fulfilledTimeStamp?: undefined;
|
|
1586
|
+
} & {
|
|
1587
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1588
|
+
isUninitialized: true;
|
|
1589
|
+
isLoading: false;
|
|
1590
|
+
isSuccess: false;
|
|
1591
|
+
isError: false;
|
|
1592
|
+
}) | ({
|
|
1593
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1594
|
+
} & Omit<{
|
|
1595
|
+
requestId: string;
|
|
1596
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1597
|
+
error?: unknown;
|
|
1598
|
+
endpointName: string;
|
|
1599
|
+
startedTimeStamp: number;
|
|
1600
|
+
fulfilledTimeStamp?: number;
|
|
1601
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1602
|
+
requestId: string;
|
|
1603
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1604
|
+
error?: unknown;
|
|
1605
|
+
endpointName: string;
|
|
1606
|
+
startedTimeStamp: number;
|
|
1607
|
+
fulfilledTimeStamp?: number;
|
|
1608
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1609
|
+
error: undefined;
|
|
1610
|
+
} & {
|
|
1611
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1612
|
+
isUninitialized: false;
|
|
1613
|
+
isLoading: false;
|
|
1614
|
+
isSuccess: true;
|
|
1615
|
+
isError: false;
|
|
1616
|
+
}) | ({
|
|
1617
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1618
|
+
} & {
|
|
1619
|
+
requestId: string;
|
|
1620
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1621
|
+
error?: unknown;
|
|
1622
|
+
endpointName: string;
|
|
1623
|
+
startedTimeStamp: number;
|
|
1624
|
+
fulfilledTimeStamp?: number;
|
|
1625
|
+
} & {
|
|
1626
|
+
data?: undefined;
|
|
1627
|
+
} & {
|
|
1628
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1629
|
+
isUninitialized: false;
|
|
1630
|
+
isLoading: true;
|
|
1631
|
+
isSuccess: false;
|
|
1632
|
+
isError: false;
|
|
1633
|
+
}) | ({
|
|
1634
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1635
|
+
} & Omit<{
|
|
1636
|
+
requestId: string;
|
|
1637
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1638
|
+
error?: unknown;
|
|
1639
|
+
endpointName: string;
|
|
1640
|
+
startedTimeStamp: number;
|
|
1641
|
+
fulfilledTimeStamp?: number;
|
|
1642
|
+
}, "error"> & Required<Pick<{
|
|
1643
|
+
requestId: string;
|
|
1644
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
1645
|
+
error?: unknown;
|
|
1646
|
+
endpointName: string;
|
|
1647
|
+
startedTimeStamp: number;
|
|
1648
|
+
fulfilledTimeStamp?: number;
|
|
1649
|
+
}, "error">> & {
|
|
1650
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1651
|
+
isUninitialized: false;
|
|
1652
|
+
isLoading: false;
|
|
1653
|
+
isSuccess: false;
|
|
1654
|
+
isError: true;
|
|
1655
|
+
})) => R) | undefined;
|
|
1656
|
+
fixedCacheKey?: string;
|
|
1657
|
+
} | undefined) => readonly [(arg: {
|
|
1658
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
1659
|
+
active?: boolean;
|
|
1660
|
+
email?: string;
|
|
1661
|
+
org?: string;
|
|
1662
|
+
page?: number;
|
|
1663
|
+
pageSize?: number;
|
|
1664
|
+
platformKey?: string;
|
|
1665
|
+
sort?: string;
|
|
1666
|
+
source?: string;
|
|
1667
|
+
username?: string;
|
|
1668
|
+
verbose?: boolean;
|
|
1669
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1670
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
1671
|
+
active?: boolean;
|
|
1672
|
+
email?: string;
|
|
1673
|
+
org?: string;
|
|
1674
|
+
page?: number;
|
|
1675
|
+
pageSize?: number;
|
|
1676
|
+
platformKey?: string;
|
|
1677
|
+
sort?: string;
|
|
1678
|
+
source?: string;
|
|
1679
|
+
username?: string;
|
|
1680
|
+
verbose?: boolean;
|
|
1681
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1682
|
+
attempt?: number;
|
|
1683
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1684
|
+
originalArgs?: {
|
|
1685
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
1686
|
+
active?: boolean;
|
|
1687
|
+
email?: string;
|
|
1688
|
+
org?: string;
|
|
1689
|
+
page?: number;
|
|
1690
|
+
pageSize?: number;
|
|
1691
|
+
platformKey?: string;
|
|
1692
|
+
sort?: string;
|
|
1693
|
+
source?: string;
|
|
1694
|
+
username?: string;
|
|
1695
|
+
verbose?: boolean;
|
|
1696
|
+
} | undefined;
|
|
1697
|
+
reset: () => void;
|
|
1698
|
+
}], useUpdatePlatformUserRoleWithPoliciesMutation: <R extends Record<string, any> = ({
|
|
1699
|
+
requestId?: undefined;
|
|
1700
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1701
|
+
data?: undefined;
|
|
1702
|
+
error?: undefined;
|
|
1703
|
+
endpointName?: string;
|
|
1704
|
+
startedTimeStamp?: undefined;
|
|
1705
|
+
fulfilledTimeStamp?: undefined;
|
|
1706
|
+
} & {
|
|
1707
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1708
|
+
isUninitialized: true;
|
|
1709
|
+
isLoading: false;
|
|
1710
|
+
isSuccess: false;
|
|
1711
|
+
isError: false;
|
|
1712
|
+
}) | ({
|
|
1713
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1714
|
+
} & Omit<{
|
|
1715
|
+
requestId: string;
|
|
1716
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1717
|
+
error?: unknown;
|
|
1718
|
+
endpointName: string;
|
|
1719
|
+
startedTimeStamp: number;
|
|
1720
|
+
fulfilledTimeStamp?: number;
|
|
1721
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1722
|
+
requestId: string;
|
|
1723
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1724
|
+
error?: unknown;
|
|
1725
|
+
endpointName: string;
|
|
1726
|
+
startedTimeStamp: number;
|
|
1727
|
+
fulfilledTimeStamp?: number;
|
|
1728
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1729
|
+
error: undefined;
|
|
1730
|
+
} & {
|
|
1731
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1732
|
+
isUninitialized: false;
|
|
1733
|
+
isLoading: false;
|
|
1734
|
+
isSuccess: true;
|
|
1735
|
+
isError: false;
|
|
1736
|
+
}) | ({
|
|
1737
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1738
|
+
} & {
|
|
1739
|
+
requestId: string;
|
|
1740
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1741
|
+
error?: unknown;
|
|
1742
|
+
endpointName: string;
|
|
1743
|
+
startedTimeStamp: number;
|
|
1744
|
+
fulfilledTimeStamp?: number;
|
|
1745
|
+
} & {
|
|
1746
|
+
data?: undefined;
|
|
1747
|
+
} & {
|
|
1748
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1749
|
+
isUninitialized: false;
|
|
1750
|
+
isLoading: true;
|
|
1751
|
+
isSuccess: false;
|
|
1752
|
+
isError: false;
|
|
1753
|
+
}) | ({
|
|
1754
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1755
|
+
} & Omit<{
|
|
1756
|
+
requestId: string;
|
|
1757
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1758
|
+
error?: unknown;
|
|
1759
|
+
endpointName: string;
|
|
1760
|
+
startedTimeStamp: number;
|
|
1761
|
+
fulfilledTimeStamp?: number;
|
|
1762
|
+
}, "error"> & Required<Pick<{
|
|
1763
|
+
requestId: string;
|
|
1764
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1765
|
+
error?: unknown;
|
|
1766
|
+
endpointName: string;
|
|
1767
|
+
startedTimeStamp: number;
|
|
1768
|
+
fulfilledTimeStamp?: number;
|
|
1769
|
+
}, "error">> & {
|
|
1770
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1771
|
+
isUninitialized: false;
|
|
1772
|
+
isLoading: false;
|
|
1773
|
+
isSuccess: false;
|
|
1774
|
+
isError: true;
|
|
1775
|
+
})>(options?: {
|
|
1776
|
+
selectFromResult?: ((state: ({
|
|
1777
|
+
requestId?: undefined;
|
|
1778
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1779
|
+
data?: undefined;
|
|
1780
|
+
error?: undefined;
|
|
1781
|
+
endpointName?: string;
|
|
1782
|
+
startedTimeStamp?: undefined;
|
|
1783
|
+
fulfilledTimeStamp?: undefined;
|
|
1784
|
+
} & {
|
|
1785
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1786
|
+
isUninitialized: true;
|
|
1787
|
+
isLoading: false;
|
|
1788
|
+
isSuccess: false;
|
|
1789
|
+
isError: false;
|
|
1790
|
+
}) | ({
|
|
1791
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1792
|
+
} & Omit<{
|
|
1793
|
+
requestId: string;
|
|
1794
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1795
|
+
error?: unknown;
|
|
1796
|
+
endpointName: string;
|
|
1797
|
+
startedTimeStamp: number;
|
|
1798
|
+
fulfilledTimeStamp?: number;
|
|
1799
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1800
|
+
requestId: string;
|
|
1801
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1802
|
+
error?: unknown;
|
|
1803
|
+
endpointName: string;
|
|
1804
|
+
startedTimeStamp: number;
|
|
1805
|
+
fulfilledTimeStamp?: number;
|
|
1806
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1807
|
+
error: undefined;
|
|
1808
|
+
} & {
|
|
1809
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1810
|
+
isUninitialized: false;
|
|
1811
|
+
isLoading: false;
|
|
1812
|
+
isSuccess: true;
|
|
1813
|
+
isError: false;
|
|
1814
|
+
}) | ({
|
|
1815
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1816
|
+
} & {
|
|
1817
|
+
requestId: string;
|
|
1818
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1819
|
+
error?: unknown;
|
|
1820
|
+
endpointName: string;
|
|
1821
|
+
startedTimeStamp: number;
|
|
1822
|
+
fulfilledTimeStamp?: number;
|
|
1823
|
+
} & {
|
|
1824
|
+
data?: undefined;
|
|
1825
|
+
} & {
|
|
1826
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1827
|
+
isUninitialized: false;
|
|
1828
|
+
isLoading: true;
|
|
1829
|
+
isSuccess: false;
|
|
1830
|
+
isError: false;
|
|
1831
|
+
}) | ({
|
|
1832
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1833
|
+
} & Omit<{
|
|
1834
|
+
requestId: string;
|
|
1835
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1836
|
+
error?: unknown;
|
|
1837
|
+
endpointName: string;
|
|
1838
|
+
startedTimeStamp: number;
|
|
1839
|
+
fulfilledTimeStamp?: number;
|
|
1840
|
+
}, "error"> & Required<Pick<{
|
|
1841
|
+
requestId: string;
|
|
1842
|
+
data?: PlatformUsersListResponse | undefined;
|
|
1843
|
+
error?: unknown;
|
|
1844
|
+
endpointName: string;
|
|
1845
|
+
startedTimeStamp: number;
|
|
1846
|
+
fulfilledTimeStamp?: number;
|
|
1847
|
+
}, "error">> & {
|
|
1848
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1849
|
+
isUninitialized: false;
|
|
1850
|
+
isLoading: false;
|
|
1851
|
+
isSuccess: false;
|
|
1852
|
+
isError: true;
|
|
1853
|
+
})) => R) | undefined;
|
|
1854
|
+
fixedCacheKey?: string;
|
|
1855
|
+
} | undefined) => readonly [(arg: {
|
|
1856
|
+
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
1857
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1858
|
+
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
1859
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1860
|
+
attempt?: number;
|
|
1861
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUsersListResponse, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1862
|
+
originalArgs?: {
|
|
1863
|
+
requestBody: PlatformUserPolicyUpdateRequest[];
|
|
1864
|
+
} | undefined;
|
|
1865
|
+
reset: () => void;
|
|
1866
|
+
}], useCreatePlatformUserGroupMutation: <R extends Record<string, any> = ({
|
|
1867
|
+
requestId?: undefined;
|
|
1868
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1869
|
+
data?: undefined;
|
|
1870
|
+
error?: undefined;
|
|
1871
|
+
endpointName?: string;
|
|
1872
|
+
startedTimeStamp?: undefined;
|
|
1873
|
+
fulfilledTimeStamp?: undefined;
|
|
1874
|
+
} & {
|
|
1875
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1876
|
+
isUninitialized: true;
|
|
1877
|
+
isLoading: false;
|
|
1878
|
+
isSuccess: false;
|
|
1879
|
+
isError: false;
|
|
1880
|
+
}) | ({
|
|
1881
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1882
|
+
} & Omit<{
|
|
1883
|
+
requestId: string;
|
|
1884
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1885
|
+
error?: unknown;
|
|
1886
|
+
endpointName: string;
|
|
1887
|
+
startedTimeStamp: number;
|
|
1888
|
+
fulfilledTimeStamp?: number;
|
|
1889
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1890
|
+
requestId: string;
|
|
1891
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1892
|
+
error?: unknown;
|
|
1893
|
+
endpointName: string;
|
|
1894
|
+
startedTimeStamp: number;
|
|
1895
|
+
fulfilledTimeStamp?: number;
|
|
1896
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1897
|
+
error: undefined;
|
|
1898
|
+
} & {
|
|
1899
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1900
|
+
isUninitialized: false;
|
|
1901
|
+
isLoading: false;
|
|
1902
|
+
isSuccess: true;
|
|
1903
|
+
isError: false;
|
|
1904
|
+
}) | ({
|
|
1905
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1906
|
+
} & {
|
|
1907
|
+
requestId: string;
|
|
1908
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1909
|
+
error?: unknown;
|
|
1910
|
+
endpointName: string;
|
|
1911
|
+
startedTimeStamp: number;
|
|
1912
|
+
fulfilledTimeStamp?: number;
|
|
1913
|
+
} & {
|
|
1914
|
+
data?: undefined;
|
|
1915
|
+
} & {
|
|
1916
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1917
|
+
isUninitialized: false;
|
|
1918
|
+
isLoading: true;
|
|
1919
|
+
isSuccess: false;
|
|
1920
|
+
isError: false;
|
|
1921
|
+
}) | ({
|
|
1922
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1923
|
+
} & Omit<{
|
|
1924
|
+
requestId: string;
|
|
1925
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1926
|
+
error?: unknown;
|
|
1927
|
+
endpointName: string;
|
|
1928
|
+
startedTimeStamp: number;
|
|
1929
|
+
fulfilledTimeStamp?: number;
|
|
1930
|
+
}, "error"> & Required<Pick<{
|
|
1931
|
+
requestId: string;
|
|
1932
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1933
|
+
error?: unknown;
|
|
1934
|
+
endpointName: string;
|
|
1935
|
+
startedTimeStamp: number;
|
|
1936
|
+
fulfilledTimeStamp?: number;
|
|
1937
|
+
}, "error">> & {
|
|
1938
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1939
|
+
isUninitialized: false;
|
|
1940
|
+
isLoading: false;
|
|
1941
|
+
isSuccess: false;
|
|
1942
|
+
isError: true;
|
|
1943
|
+
})>(options?: {
|
|
1944
|
+
selectFromResult?: ((state: ({
|
|
1945
|
+
requestId?: undefined;
|
|
1946
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1947
|
+
data?: undefined;
|
|
1948
|
+
error?: undefined;
|
|
1949
|
+
endpointName?: string;
|
|
1950
|
+
startedTimeStamp?: undefined;
|
|
1951
|
+
fulfilledTimeStamp?: undefined;
|
|
1952
|
+
} & {
|
|
1953
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1954
|
+
isUninitialized: true;
|
|
1955
|
+
isLoading: false;
|
|
1956
|
+
isSuccess: false;
|
|
1957
|
+
isError: false;
|
|
1958
|
+
}) | ({
|
|
1959
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1960
|
+
} & Omit<{
|
|
1961
|
+
requestId: string;
|
|
1962
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1963
|
+
error?: unknown;
|
|
1964
|
+
endpointName: string;
|
|
1965
|
+
startedTimeStamp: number;
|
|
1966
|
+
fulfilledTimeStamp?: number;
|
|
1967
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1968
|
+
requestId: string;
|
|
1969
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1970
|
+
error?: unknown;
|
|
1971
|
+
endpointName: string;
|
|
1972
|
+
startedTimeStamp: number;
|
|
1973
|
+
fulfilledTimeStamp?: number;
|
|
1974
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1975
|
+
error: undefined;
|
|
1976
|
+
} & {
|
|
1977
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1978
|
+
isUninitialized: false;
|
|
1979
|
+
isLoading: false;
|
|
1980
|
+
isSuccess: true;
|
|
1981
|
+
isError: false;
|
|
1982
|
+
}) | ({
|
|
1983
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1984
|
+
} & {
|
|
1985
|
+
requestId: string;
|
|
1986
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1987
|
+
error?: unknown;
|
|
1988
|
+
endpointName: string;
|
|
1989
|
+
startedTimeStamp: number;
|
|
1990
|
+
fulfilledTimeStamp?: number;
|
|
1991
|
+
} & {
|
|
1992
|
+
data?: undefined;
|
|
1993
|
+
} & {
|
|
1994
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1995
|
+
isUninitialized: false;
|
|
1996
|
+
isLoading: true;
|
|
1997
|
+
isSuccess: false;
|
|
1998
|
+
isError: false;
|
|
1999
|
+
}) | ({
|
|
2000
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
2001
|
+
} & Omit<{
|
|
2002
|
+
requestId: string;
|
|
2003
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
2004
|
+
error?: unknown;
|
|
2005
|
+
endpointName: string;
|
|
2006
|
+
startedTimeStamp: number;
|
|
2007
|
+
fulfilledTimeStamp?: number;
|
|
2008
|
+
}, "error"> & Required<Pick<{
|
|
2009
|
+
requestId: string;
|
|
2010
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
2011
|
+
error?: unknown;
|
|
2012
|
+
endpointName: string;
|
|
2013
|
+
startedTimeStamp: number;
|
|
2014
|
+
fulfilledTimeStamp?: number;
|
|
2015
|
+
}, "error">> & {
|
|
2016
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
2017
|
+
isUninitialized: false;
|
|
2018
|
+
isLoading: false;
|
|
2019
|
+
isSuccess: false;
|
|
2020
|
+
isError: true;
|
|
2021
|
+
})) => R) | undefined;
|
|
2022
|
+
fixedCacheKey?: string;
|
|
2023
|
+
} | undefined) => readonly [(arg: {
|
|
2024
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
2025
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
2026
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
2027
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2028
|
+
attempt?: number;
|
|
2029
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").UserGroup, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2030
|
+
originalArgs?: {
|
|
2031
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
2032
|
+
} | undefined;
|
|
2033
|
+
reset: () => void;
|
|
2034
|
+
}], useUpdatePlatformUserGroupMutation: <R extends Record<string, any> = ({
|
|
2035
|
+
requestId?: undefined;
|
|
2036
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2037
|
+
data?: undefined;
|
|
2038
|
+
error?: undefined;
|
|
2039
|
+
endpointName?: string;
|
|
2040
|
+
startedTimeStamp?: undefined;
|
|
2041
|
+
fulfilledTimeStamp?: undefined;
|
|
2042
|
+
} & {
|
|
2043
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2044
|
+
isUninitialized: true;
|
|
2045
|
+
isLoading: false;
|
|
2046
|
+
isSuccess: false;
|
|
2047
|
+
isError: false;
|
|
2048
|
+
}) | ({
|
|
2049
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
2050
|
+
} & Omit<{
|
|
2051
|
+
requestId: string;
|
|
2052
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
2053
|
+
error?: unknown;
|
|
2054
|
+
endpointName: string;
|
|
2055
|
+
startedTimeStamp: number;
|
|
2056
|
+
fulfilledTimeStamp?: number;
|
|
2057
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2058
|
+
requestId: string;
|
|
2059
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
2060
|
+
error?: unknown;
|
|
2061
|
+
endpointName: string;
|
|
2062
|
+
startedTimeStamp: number;
|
|
2063
|
+
fulfilledTimeStamp?: number;
|
|
2064
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
2065
|
+
error: undefined;
|
|
2066
|
+
} & {
|
|
2067
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
2068
|
+
isUninitialized: false;
|
|
2069
|
+
isLoading: false;
|
|
2070
|
+
isSuccess: true;
|
|
953
2071
|
isError: false;
|
|
954
2072
|
}) | ({
|
|
955
2073
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
956
2074
|
} & {
|
|
957
2075
|
requestId: string;
|
|
958
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2076
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
959
2077
|
error?: unknown;
|
|
960
2078
|
endpointName: string;
|
|
961
2079
|
startedTimeStamp: number;
|
|
@@ -972,14 +2090,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
972
2090
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
973
2091
|
} & Omit<{
|
|
974
2092
|
requestId: string;
|
|
975
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2093
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
976
2094
|
error?: unknown;
|
|
977
2095
|
endpointName: string;
|
|
978
2096
|
startedTimeStamp: number;
|
|
979
2097
|
fulfilledTimeStamp?: number;
|
|
980
2098
|
}, "error"> & Required<Pick<{
|
|
981
2099
|
requestId: string;
|
|
982
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2100
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
983
2101
|
error?: unknown;
|
|
984
2102
|
endpointName: string;
|
|
985
2103
|
startedTimeStamp: number;
|
|
@@ -1009,14 +2127,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1009
2127
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1010
2128
|
} & Omit<{
|
|
1011
2129
|
requestId: string;
|
|
1012
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2130
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1013
2131
|
error?: unknown;
|
|
1014
2132
|
endpointName: string;
|
|
1015
2133
|
startedTimeStamp: number;
|
|
1016
2134
|
fulfilledTimeStamp?: number;
|
|
1017
2135
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1018
2136
|
requestId: string;
|
|
1019
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2137
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1020
2138
|
error?: unknown;
|
|
1021
2139
|
endpointName: string;
|
|
1022
2140
|
startedTimeStamp: number;
|
|
@@ -1033,7 +2151,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1033
2151
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1034
2152
|
} & {
|
|
1035
2153
|
requestId: string;
|
|
1036
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2154
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1037
2155
|
error?: unknown;
|
|
1038
2156
|
endpointName: string;
|
|
1039
2157
|
startedTimeStamp: number;
|
|
@@ -1050,14 +2168,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1050
2168
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1051
2169
|
} & Omit<{
|
|
1052
2170
|
requestId: string;
|
|
1053
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2171
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1054
2172
|
error?: unknown;
|
|
1055
2173
|
endpointName: string;
|
|
1056
2174
|
startedTimeStamp: number;
|
|
1057
2175
|
fulfilledTimeStamp?: number;
|
|
1058
2176
|
}, "error"> & Required<Pick<{
|
|
1059
2177
|
requestId: string;
|
|
1060
|
-
data?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
2178
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").UserGroup | undefined;
|
|
1061
2179
|
error?: unknown;
|
|
1062
2180
|
endpointName: string;
|
|
1063
2181
|
startedTimeStamp: number;
|
|
@@ -1071,45 +2189,20 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1071
2189
|
})) => R) | undefined;
|
|
1072
2190
|
fixedCacheKey?: string;
|
|
1073
2191
|
} | undefined) => readonly [(arg: {
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
email?: string;
|
|
1077
|
-
org?: string;
|
|
1078
|
-
page?: number;
|
|
1079
|
-
pageSize?: number;
|
|
1080
|
-
platformKey?: string;
|
|
1081
|
-
sort?: string;
|
|
1082
|
-
source?: string;
|
|
1083
|
-
username?: string;
|
|
1084
|
-
verbose?: boolean;
|
|
2192
|
+
id: number;
|
|
2193
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
1085
2194
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
pageSize?: number;
|
|
1092
|
-
platformKey?: string;
|
|
1093
|
-
sort?: string;
|
|
1094
|
-
source?: string;
|
|
1095
|
-
username?: string;
|
|
1096
|
-
verbose?: boolean;
|
|
1097
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2195
|
+
id: number;
|
|
2196
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
2197
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2198
|
+
attempt?: number;
|
|
2199
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, import("node_modules/@iblai/iblai-api/dist/types").UserGroup, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1098
2200
|
originalArgs?: {
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
email?: string;
|
|
1102
|
-
org?: string;
|
|
1103
|
-
page?: number;
|
|
1104
|
-
pageSize?: number;
|
|
1105
|
-
platformKey?: string;
|
|
1106
|
-
sort?: string;
|
|
1107
|
-
source?: string;
|
|
1108
|
-
username?: string;
|
|
1109
|
-
verbose?: boolean;
|
|
2201
|
+
id: number;
|
|
2202
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").UserGroup;
|
|
1110
2203
|
} | undefined;
|
|
1111
2204
|
reset: () => void;
|
|
1112
|
-
}],
|
|
2205
|
+
}], useDeletePlatformUserGroupMutation: <R extends Record<string, any> = ({
|
|
1113
2206
|
requestId?: undefined;
|
|
1114
2207
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1115
2208
|
data?: undefined;
|
|
@@ -1127,14 +2220,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1127
2220
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1128
2221
|
} & Omit<{
|
|
1129
2222
|
requestId: string;
|
|
1130
|
-
data?:
|
|
2223
|
+
data?: void | undefined;
|
|
1131
2224
|
error?: unknown;
|
|
1132
2225
|
endpointName: string;
|
|
1133
2226
|
startedTimeStamp: number;
|
|
1134
2227
|
fulfilledTimeStamp?: number;
|
|
1135
2228
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1136
2229
|
requestId: string;
|
|
1137
|
-
data?:
|
|
2230
|
+
data?: void | undefined;
|
|
1138
2231
|
error?: unknown;
|
|
1139
2232
|
endpointName: string;
|
|
1140
2233
|
startedTimeStamp: number;
|
|
@@ -1151,7 +2244,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1151
2244
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1152
2245
|
} & {
|
|
1153
2246
|
requestId: string;
|
|
1154
|
-
data?:
|
|
2247
|
+
data?: void | undefined;
|
|
1155
2248
|
error?: unknown;
|
|
1156
2249
|
endpointName: string;
|
|
1157
2250
|
startedTimeStamp: number;
|
|
@@ -1168,14 +2261,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1168
2261
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1169
2262
|
} & Omit<{
|
|
1170
2263
|
requestId: string;
|
|
1171
|
-
data?:
|
|
2264
|
+
data?: void | undefined;
|
|
1172
2265
|
error?: unknown;
|
|
1173
2266
|
endpointName: string;
|
|
1174
2267
|
startedTimeStamp: number;
|
|
1175
2268
|
fulfilledTimeStamp?: number;
|
|
1176
2269
|
}, "error"> & Required<Pick<{
|
|
1177
2270
|
requestId: string;
|
|
1178
|
-
data?:
|
|
2271
|
+
data?: void | undefined;
|
|
1179
2272
|
error?: unknown;
|
|
1180
2273
|
endpointName: string;
|
|
1181
2274
|
startedTimeStamp: number;
|
|
@@ -1205,14 +2298,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1205
2298
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1206
2299
|
} & Omit<{
|
|
1207
2300
|
requestId: string;
|
|
1208
|
-
data?:
|
|
2301
|
+
data?: void | undefined;
|
|
1209
2302
|
error?: unknown;
|
|
1210
2303
|
endpointName: string;
|
|
1211
2304
|
startedTimeStamp: number;
|
|
1212
2305
|
fulfilledTimeStamp?: number;
|
|
1213
2306
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1214
2307
|
requestId: string;
|
|
1215
|
-
data?:
|
|
2308
|
+
data?: void | undefined;
|
|
1216
2309
|
error?: unknown;
|
|
1217
2310
|
endpointName: string;
|
|
1218
2311
|
startedTimeStamp: number;
|
|
@@ -1229,7 +2322,7 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1229
2322
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1230
2323
|
} & {
|
|
1231
2324
|
requestId: string;
|
|
1232
|
-
data?:
|
|
2325
|
+
data?: void | undefined;
|
|
1233
2326
|
error?: unknown;
|
|
1234
2327
|
endpointName: string;
|
|
1235
2328
|
startedTimeStamp: number;
|
|
@@ -1246,14 +2339,14 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1246
2339
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1247
2340
|
} & Omit<{
|
|
1248
2341
|
requestId: string;
|
|
1249
|
-
data?:
|
|
2342
|
+
data?: void | undefined;
|
|
1250
2343
|
error?: unknown;
|
|
1251
2344
|
endpointName: string;
|
|
1252
2345
|
startedTimeStamp: number;
|
|
1253
2346
|
fulfilledTimeStamp?: number;
|
|
1254
2347
|
}, "error"> & Required<Pick<{
|
|
1255
2348
|
requestId: string;
|
|
1256
|
-
data?:
|
|
2349
|
+
data?: void | undefined;
|
|
1257
2350
|
error?: unknown;
|
|
1258
2351
|
endpointName: string;
|
|
1259
2352
|
startedTimeStamp: number;
|
|
@@ -1267,12 +2360,194 @@ export declare const useUsersGradesPassedQuery: <R extends Record<string, any> =
|
|
|
1267
2360
|
})) => R) | undefined;
|
|
1268
2361
|
fixedCacheKey?: string;
|
|
1269
2362
|
} | undefined) => readonly [(arg: {
|
|
1270
|
-
|
|
2363
|
+
id: number;
|
|
1271
2364
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1272
|
-
|
|
1273
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2365
|
+
id: number;
|
|
2366
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2367
|
+
attempt?: number;
|
|
2368
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, void, "platform-api", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1274
2369
|
originalArgs?: {
|
|
1275
|
-
|
|
2370
|
+
id: number;
|
|
1276
2371
|
} | undefined;
|
|
1277
2372
|
reset: () => void;
|
|
1278
|
-
}]
|
|
2373
|
+
}], useGetPlatformUserGroupDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2374
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2375
|
+
originalArgs?: undefined | undefined;
|
|
2376
|
+
data?: undefined | undefined;
|
|
2377
|
+
error?: undefined | undefined;
|
|
2378
|
+
requestId?: undefined | undefined;
|
|
2379
|
+
endpointName?: string | undefined;
|
|
2380
|
+
startedTimeStamp?: undefined | undefined;
|
|
2381
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2382
|
+
} & {
|
|
2383
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2384
|
+
isUninitialized: false;
|
|
2385
|
+
isLoading: false;
|
|
2386
|
+
isFetching: false;
|
|
2387
|
+
isSuccess: false;
|
|
2388
|
+
isError: false;
|
|
2389
|
+
}, "isUninitialized"> & {
|
|
2390
|
+
isUninitialized: true;
|
|
2391
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2392
|
+
id: number;
|
|
2393
|
+
platformKey: string;
|
|
2394
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2395
|
+
attempt?: number;
|
|
2396
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2397
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2398
|
+
isUninitialized: false;
|
|
2399
|
+
isLoading: false;
|
|
2400
|
+
isFetching: false;
|
|
2401
|
+
isSuccess: false;
|
|
2402
|
+
isError: false;
|
|
2403
|
+
}, {
|
|
2404
|
+
isLoading: true;
|
|
2405
|
+
isFetching: boolean;
|
|
2406
|
+
data: undefined;
|
|
2407
|
+
} | ({
|
|
2408
|
+
isSuccess: true;
|
|
2409
|
+
isFetching: true;
|
|
2410
|
+
error: undefined;
|
|
2411
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2412
|
+
id: number;
|
|
2413
|
+
platformKey: string;
|
|
2414
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2415
|
+
attempt?: number;
|
|
2416
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2417
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2418
|
+
isUninitialized: false;
|
|
2419
|
+
isLoading: false;
|
|
2420
|
+
isFetching: false;
|
|
2421
|
+
isSuccess: false;
|
|
2422
|
+
isError: false;
|
|
2423
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2424
|
+
isSuccess: true;
|
|
2425
|
+
isFetching: false;
|
|
2426
|
+
error: undefined;
|
|
2427
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2428
|
+
id: number;
|
|
2429
|
+
platformKey: string;
|
|
2430
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2431
|
+
attempt?: number;
|
|
2432
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2433
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2434
|
+
isUninitialized: false;
|
|
2435
|
+
isLoading: false;
|
|
2436
|
+
isFetching: false;
|
|
2437
|
+
isSuccess: false;
|
|
2438
|
+
isError: false;
|
|
2439
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2440
|
+
isError: true;
|
|
2441
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2442
|
+
id: number;
|
|
2443
|
+
platformKey: string;
|
|
2444
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2445
|
+
attempt?: number;
|
|
2446
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2447
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2448
|
+
isUninitialized: false;
|
|
2449
|
+
isLoading: false;
|
|
2450
|
+
isFetching: false;
|
|
2451
|
+
isSuccess: false;
|
|
2452
|
+
isError: false;
|
|
2453
|
+
}, "error">>)>> & {
|
|
2454
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2455
|
+
}>(arg: {
|
|
2456
|
+
id: number;
|
|
2457
|
+
platformKey: string;
|
|
2458
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
2459
|
+
skip?: boolean;
|
|
2460
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
2461
|
+
} & {
|
|
2462
|
+
skip?: boolean;
|
|
2463
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2464
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2465
|
+
originalArgs?: undefined | undefined;
|
|
2466
|
+
data?: undefined | undefined;
|
|
2467
|
+
error?: undefined | undefined;
|
|
2468
|
+
requestId?: undefined | undefined;
|
|
2469
|
+
endpointName?: string | undefined;
|
|
2470
|
+
startedTimeStamp?: undefined | undefined;
|
|
2471
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2472
|
+
} & {
|
|
2473
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2474
|
+
isUninitialized: false;
|
|
2475
|
+
isLoading: false;
|
|
2476
|
+
isFetching: false;
|
|
2477
|
+
isSuccess: false;
|
|
2478
|
+
isError: false;
|
|
2479
|
+
}, "isUninitialized"> & {
|
|
2480
|
+
isUninitialized: true;
|
|
2481
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2482
|
+
id: number;
|
|
2483
|
+
platformKey: string;
|
|
2484
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2485
|
+
attempt?: number;
|
|
2486
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2487
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2488
|
+
isUninitialized: false;
|
|
2489
|
+
isLoading: false;
|
|
2490
|
+
isFetching: false;
|
|
2491
|
+
isSuccess: false;
|
|
2492
|
+
isError: false;
|
|
2493
|
+
}, {
|
|
2494
|
+
isLoading: true;
|
|
2495
|
+
isFetching: boolean;
|
|
2496
|
+
data: undefined;
|
|
2497
|
+
} | ({
|
|
2498
|
+
isSuccess: true;
|
|
2499
|
+
isFetching: true;
|
|
2500
|
+
error: undefined;
|
|
2501
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2502
|
+
id: number;
|
|
2503
|
+
platformKey: string;
|
|
2504
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2505
|
+
attempt?: number;
|
|
2506
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2507
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2508
|
+
isUninitialized: false;
|
|
2509
|
+
isLoading: false;
|
|
2510
|
+
isFetching: false;
|
|
2511
|
+
isSuccess: false;
|
|
2512
|
+
isError: false;
|
|
2513
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2514
|
+
isSuccess: true;
|
|
2515
|
+
isFetching: false;
|
|
2516
|
+
error: undefined;
|
|
2517
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2518
|
+
id: number;
|
|
2519
|
+
platformKey: string;
|
|
2520
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2521
|
+
attempt?: number;
|
|
2522
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2523
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2524
|
+
isUninitialized: false;
|
|
2525
|
+
isLoading: false;
|
|
2526
|
+
isFetching: false;
|
|
2527
|
+
isSuccess: false;
|
|
2528
|
+
isError: false;
|
|
2529
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2530
|
+
isError: true;
|
|
2531
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2532
|
+
id: number;
|
|
2533
|
+
platformKey: string;
|
|
2534
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2535
|
+
attempt?: number;
|
|
2536
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>> & {
|
|
2537
|
+
currentData?: PlatformUserGroupDetailsResponse | undefined;
|
|
2538
|
+
isUninitialized: false;
|
|
2539
|
+
isLoading: false;
|
|
2540
|
+
isFetching: false;
|
|
2541
|
+
isSuccess: false;
|
|
2542
|
+
isError: false;
|
|
2543
|
+
}, "error">>)>> & {
|
|
2544
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2545
|
+
}) => R) | undefined;
|
|
2546
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2547
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2548
|
+
id: number;
|
|
2549
|
+
platformKey: string;
|
|
2550
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2551
|
+
attempt?: number;
|
|
2552
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, string, PlatformUserGroupDetailsResponse, "platform-api", any>>;
|
|
2553
|
+
};
|