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