@iblai/data-layer 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +38680 -21218
- package/dist/index.esm.js +5653 -2107
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5738 -2105
- package/dist/index.js.map +1 -1
- package/dist/package.json +12 -8
- package/dist/src/core/index.d.ts +7 -1
- package/dist/src/features/analytics/constants.d.ts +6 -6
- package/dist/src/features/analytics/types.d.ts +9 -0
- package/dist/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/src/features/apps/api-slice.d.ts +72 -24
- package/dist/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/src/features/artifacts/constants.d.ts +42 -0
- package/dist/src/features/artifacts/index.d.ts +3 -0
- package/dist/src/features/artifacts/types.d.ts +37 -0
- package/dist/src/features/auth/types.d.ts +1 -1
- package/dist/src/features/billing/api-slice.d.ts +15 -5
- package/dist/src/features/billing/constants.d.ts +16 -0
- package/dist/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/src/features/billing/types.d.ts +35 -0
- package/dist/src/features/career/api-slice.d.ts +342 -114
- package/dist/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/src/features/chat/api-slice.d.ts +204 -68
- package/dist/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/src/features/core/api-slice.d.ts +1253 -134
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/src/features/credentials/__tests__/custom-api-slice.test.d.ts +1 -0
- package/dist/src/features/credentials/api-slice.d.ts +3728 -146
- package/dist/src/features/credentials/constants.d.ts +9 -1
- package/dist/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/src/features/credentials/types.d.ts +14 -0
- package/dist/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/src/features/index.d.ts +2 -1
- package/dist/src/features/llms/api-slice.d.ts +60 -20
- package/dist/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/src/features/mcp/constants.d.ts +57 -0
- package/dist/src/features/mcp/index.d.ts +3 -0
- package/dist/src/features/mcp/types.d.ts +176 -0
- package/dist/src/features/memory/types.d.ts +1 -0
- package/dist/src/features/mentor/api-slice.d.ts +1793 -429
- package/dist/src/features/mentor/constants.d.ts +7 -1
- package/dist/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/src/features/mentor/types.d.ts +7 -1
- package/dist/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/src/features/platform/types.d.ts +13 -0
- package/dist/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/src/features/reports/api-slice.d.ts +145 -41
- package/dist/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/src/features/search/api-slice.d.ts +117 -39
- package/dist/src/features/search/constants.d.ts +10 -0
- package/dist/src/features/search/types.d.ts +72 -0
- package/dist/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/src/features/skills/api-slice.d.ts +231 -77
- package/dist/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/src/features/tools/api-slice.d.ts +60 -20
- package/dist/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/src/index.d.ts +6 -0
- package/dist/tests/features/billing/constants.test.d.ts +1 -0
- package/dist/tests/features/billing/custom-api-slice.test.d.ts +1 -0
- package/dist/tests/features/billing/types.test.d.ts +1 -0
- package/package.json +10 -7
|
@@ -1,101 +1,174 @@
|
|
|
1
1
|
import { CustomRbacGroupDetailsResponse, CustomRbacPolicyDetailsResponse, CustomRbacRoleDetailsResponse } from './types';
|
|
2
|
-
export declare const coreApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2
|
+
export declare const coreApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3
|
+
attempt?: number;
|
|
4
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
3
5
|
createRedirectToken: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4
6
|
org: string;
|
|
5
7
|
requestBody: import("@iblai/iblai-api").RedirectTokenRequest;
|
|
6
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
8
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
9
|
+
attempt?: number;
|
|
10
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RedirectTokenResponse, "coreApiSlice", any>;
|
|
7
11
|
getPlatformInfo: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
8
12
|
key: string;
|
|
9
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
13
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
14
|
+
attempt?: number;
|
|
15
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>;
|
|
10
16
|
updatePlatformInfo: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
11
17
|
requestBody: import("@iblai/iblai-api").PlatformUpdatePostRequest;
|
|
12
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
18
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
19
|
+
attempt?: number;
|
|
20
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>;
|
|
13
21
|
updateUserStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
14
22
|
requestBody: import("@iblai/iblai-api").UserPlatformViewPostRequest;
|
|
15
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
23
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
24
|
+
attempt?: number;
|
|
25
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", any, "coreApiSlice", any>;
|
|
16
26
|
getRbacPermissions: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
17
27
|
requestBody: import("@iblai/iblai-api").PermissionCheckRequest;
|
|
18
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
28
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
29
|
+
attempt?: number;
|
|
30
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", any, "coreApiSlice", any>;
|
|
19
31
|
getStudentMentorCreationStatus: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
20
32
|
platformKey: string;
|
|
21
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
33
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
34
|
+
attempt?: number;
|
|
35
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>;
|
|
22
36
|
setStudentMentorCreationStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
23
37
|
requestBody: import("@iblai/iblai-api").SetStudentMentorCreationPermission;
|
|
24
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
38
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
39
|
+
attempt?: number;
|
|
40
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>;
|
|
25
41
|
getRbacGroups: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
42
|
+
email?: string;
|
|
26
43
|
includeUsers?: boolean;
|
|
44
|
+
name?: string;
|
|
27
45
|
owner?: string;
|
|
28
46
|
page?: number;
|
|
29
47
|
pageSize?: number;
|
|
30
48
|
platformKey?: string;
|
|
31
|
-
|
|
49
|
+
username?: string;
|
|
50
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
51
|
+
attempt?: number;
|
|
52
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>;
|
|
32
53
|
createRbacGroup: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
33
54
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
34
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
55
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
56
|
+
attempt?: number;
|
|
57
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacGroup, "coreApiSlice", any>;
|
|
35
58
|
updateRbacGroup: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
36
59
|
id: number;
|
|
37
60
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
38
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
61
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
62
|
+
attempt?: number;
|
|
63
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacGroup, "coreApiSlice", any>;
|
|
39
64
|
deleteRbacGroup: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
40
65
|
id: number;
|
|
41
66
|
platformKey: string;
|
|
42
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
67
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
68
|
+
attempt?: number;
|
|
69
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", void, "coreApiSlice", any>;
|
|
43
70
|
getRbacGroupDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
44
71
|
id: number;
|
|
45
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
73
|
+
attempt?: number;
|
|
74
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>;
|
|
46
75
|
getRbacPolicies: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
76
|
+
email?: string;
|
|
77
|
+
group?: string;
|
|
78
|
+
includeGroups?: boolean;
|
|
79
|
+
includeUsers?: boolean;
|
|
80
|
+
name?: string;
|
|
47
81
|
page?: number;
|
|
48
82
|
pageSize?: number;
|
|
49
83
|
platformKey?: string;
|
|
50
84
|
roleId?: number;
|
|
51
|
-
|
|
85
|
+
username?: string;
|
|
86
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
87
|
+
attempt?: number;
|
|
88
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>;
|
|
52
89
|
createRbacPolicy: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
53
90
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
54
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
91
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
92
|
+
attempt?: number;
|
|
93
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacPolicy, "coreApiSlice", any>;
|
|
55
94
|
updateRbacPolicy: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
56
95
|
id: number;
|
|
57
96
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
58
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
97
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
98
|
+
attempt?: number;
|
|
99
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacPolicy, "coreApiSlice", any>;
|
|
59
100
|
deleteRbacPolicy: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
60
101
|
id: number;
|
|
61
102
|
platformKey: string;
|
|
62
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
103
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
104
|
+
attempt?: number;
|
|
105
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", void, "coreApiSlice", any>;
|
|
63
106
|
getRbacPolicyDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
64
107
|
platform_key: string;
|
|
65
108
|
id: number;
|
|
66
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
109
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
110
|
+
attempt?: number;
|
|
111
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>;
|
|
67
112
|
getRbacRoles: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
113
|
+
name?: string;
|
|
68
114
|
page?: number;
|
|
69
115
|
pageSize?: number;
|
|
70
116
|
platformKey?: string;
|
|
71
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
117
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
118
|
+
attempt?: number;
|
|
119
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>;
|
|
72
120
|
createRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
73
121
|
requestBody: import("@iblai/iblai-api").RbacRole;
|
|
74
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
122
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
123
|
+
attempt?: number;
|
|
124
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacRole, "coreApiSlice", any>;
|
|
75
125
|
updateRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
76
126
|
id: number;
|
|
77
127
|
requestBody: import("@iblai/iblai-api").RbacRole;
|
|
78
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
128
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
129
|
+
attempt?: number;
|
|
130
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacRole, "coreApiSlice", any>;
|
|
79
131
|
partialUpdateRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
80
132
|
id: number;
|
|
81
133
|
requestBody?: import("@iblai/iblai-api").PatchedRbacRole;
|
|
82
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
134
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
135
|
+
attempt?: number;
|
|
136
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacRole, "coreApiSlice", any>;
|
|
83
137
|
deleteRbacRole: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
84
138
|
id: number;
|
|
85
139
|
platformKey: string;
|
|
86
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
140
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
141
|
+
attempt?: number;
|
|
142
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", void, "coreApiSlice", any>;
|
|
87
143
|
getRbacRoleDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
88
144
|
platform_key: string;
|
|
89
145
|
id: number;
|
|
90
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
146
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
147
|
+
attempt?: number;
|
|
148
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>;
|
|
91
149
|
getRbacMentorAccessList: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
92
150
|
mentorId: number;
|
|
93
151
|
platformKey: string;
|
|
94
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
152
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
153
|
+
attempt?: number;
|
|
154
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>;
|
|
95
155
|
updateRbacMentorAccess: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
96
156
|
requestBody: import("@iblai/iblai-api").MentorPolicy;
|
|
97
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
98
|
-
|
|
157
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
158
|
+
attempt?: number;
|
|
159
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy, "coreApiSlice", any>;
|
|
160
|
+
getRbacTeamsAccessList: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
161
|
+
platformKey: string;
|
|
162
|
+
usergroupId: number;
|
|
163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
164
|
+
attempt?: number;
|
|
165
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>;
|
|
166
|
+
createRbacTeamsAccess: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
167
|
+
requestBody: import("@iblai/iblai-api").UserGroupPolicy;
|
|
168
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
169
|
+
attempt?: number;
|
|
170
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy, "coreApiSlice", any>;
|
|
171
|
+
}, "coreApiSlice", "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
99
172
|
export declare const useCreateRedirectTokenMutation: <R extends Record<string, any> = ({
|
|
100
173
|
requestId?: undefined;
|
|
101
174
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -259,7 +332,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
259
332
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
260
333
|
org: string;
|
|
261
334
|
requestBody: import("@iblai/iblai-api").RedirectTokenRequest;
|
|
262
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
335
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
336
|
+
attempt?: number;
|
|
337
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RedirectTokenResponse, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
263
338
|
originalArgs?: {
|
|
264
339
|
org: string;
|
|
265
340
|
requestBody: import("@iblai/iblai-api").RedirectTokenRequest;
|
|
@@ -285,7 +360,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
285
360
|
isUninitialized: true;
|
|
286
361
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
287
362
|
key: string;
|
|
288
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
363
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
364
|
+
attempt?: number;
|
|
365
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
289
366
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
290
367
|
isUninitialized: false;
|
|
291
368
|
isLoading: false;
|
|
@@ -302,7 +379,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
302
379
|
error: undefined;
|
|
303
380
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
304
381
|
key: string;
|
|
305
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
382
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
383
|
+
attempt?: number;
|
|
384
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
306
385
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
307
386
|
isUninitialized: false;
|
|
308
387
|
isLoading: false;
|
|
@@ -315,7 +394,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
315
394
|
error: undefined;
|
|
316
395
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
317
396
|
key: string;
|
|
318
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
397
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
398
|
+
attempt?: number;
|
|
399
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
319
400
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
320
401
|
isUninitialized: false;
|
|
321
402
|
isLoading: false;
|
|
@@ -326,7 +407,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
326
407
|
isError: true;
|
|
327
408
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
328
409
|
key: string;
|
|
329
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
410
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
411
|
+
attempt?: number;
|
|
412
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
330
413
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
331
414
|
isUninitialized: false;
|
|
332
415
|
isLoading: false;
|
|
@@ -362,7 +445,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
362
445
|
isUninitialized: true;
|
|
363
446
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
364
447
|
key: string;
|
|
365
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
448
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
449
|
+
attempt?: number;
|
|
450
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
366
451
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
367
452
|
isUninitialized: false;
|
|
368
453
|
isLoading: false;
|
|
@@ -379,7 +464,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
379
464
|
error: undefined;
|
|
380
465
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
381
466
|
key: string;
|
|
382
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
467
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
468
|
+
attempt?: number;
|
|
469
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
383
470
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
384
471
|
isUninitialized: false;
|
|
385
472
|
isLoading: false;
|
|
@@ -392,7 +479,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
392
479
|
error: undefined;
|
|
393
480
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
394
481
|
key: string;
|
|
395
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
482
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
483
|
+
attempt?: number;
|
|
484
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
396
485
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
397
486
|
isUninitialized: false;
|
|
398
487
|
isLoading: false;
|
|
@@ -403,7 +492,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
403
492
|
isError: true;
|
|
404
493
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
405
494
|
key: string;
|
|
406
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
495
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
496
|
+
attempt?: number;
|
|
497
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
407
498
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
408
499
|
isUninitialized: false;
|
|
409
500
|
isLoading: false;
|
|
@@ -416,7 +507,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
416
507
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
417
508
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
418
509
|
key: string;
|
|
419
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
510
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
511
|
+
attempt?: number;
|
|
512
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>>;
|
|
420
513
|
}, useGetRbacPermissionsMutation: <R extends Record<string, any> = ({
|
|
421
514
|
requestId?: undefined;
|
|
422
515
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -578,7 +671,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
578
671
|
requestBody: import("@iblai/iblai-api").PermissionCheckRequest;
|
|
579
672
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
580
673
|
requestBody: import("@iblai/iblai-api").PermissionCheckRequest;
|
|
581
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
674
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
675
|
+
attempt?: number;
|
|
676
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", any, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
582
677
|
originalArgs?: {
|
|
583
678
|
requestBody: import("@iblai/iblai-api").PermissionCheckRequest;
|
|
584
679
|
} | undefined;
|
|
@@ -603,7 +698,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
603
698
|
isUninitialized: true;
|
|
604
699
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
605
700
|
key: string;
|
|
606
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
701
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
702
|
+
attempt?: number;
|
|
703
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
607
704
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
608
705
|
isUninitialized: false;
|
|
609
706
|
isLoading: false;
|
|
@@ -620,7 +717,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
620
717
|
error: undefined;
|
|
621
718
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
622
719
|
key: string;
|
|
623
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
720
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
721
|
+
attempt?: number;
|
|
722
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
624
723
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
625
724
|
isUninitialized: false;
|
|
626
725
|
isLoading: false;
|
|
@@ -633,7 +732,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
633
732
|
error: undefined;
|
|
634
733
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
635
734
|
key: string;
|
|
636
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
735
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
736
|
+
attempt?: number;
|
|
737
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
637
738
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
638
739
|
isUninitialized: false;
|
|
639
740
|
isLoading: false;
|
|
@@ -644,7 +745,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
644
745
|
isError: true;
|
|
645
746
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
646
747
|
key: string;
|
|
647
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
748
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
749
|
+
attempt?: number;
|
|
750
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
648
751
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
649
752
|
isUninitialized: false;
|
|
650
753
|
isLoading: false;
|
|
@@ -675,7 +778,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
675
778
|
isUninitialized: true;
|
|
676
779
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
677
780
|
key: string;
|
|
678
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
781
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
782
|
+
attempt?: number;
|
|
783
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
679
784
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
680
785
|
isUninitialized: false;
|
|
681
786
|
isLoading: false;
|
|
@@ -692,7 +797,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
692
797
|
error: undefined;
|
|
693
798
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
694
799
|
key: string;
|
|
695
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
800
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
801
|
+
attempt?: number;
|
|
802
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
696
803
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
697
804
|
isUninitialized: false;
|
|
698
805
|
isLoading: false;
|
|
@@ -705,7 +812,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
705
812
|
error: undefined;
|
|
706
813
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
707
814
|
key: string;
|
|
708
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
815
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
816
|
+
attempt?: number;
|
|
817
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
709
818
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
710
819
|
isUninitialized: false;
|
|
711
820
|
isLoading: false;
|
|
@@ -716,7 +825,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
716
825
|
isError: true;
|
|
717
826
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
718
827
|
key: string;
|
|
719
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
828
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
829
|
+
attempt?: number;
|
|
830
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>> & {
|
|
720
831
|
currentData?: import("@iblai/iblai-api").PlatformList | undefined;
|
|
721
832
|
isUninitialized: false;
|
|
722
833
|
isLoading: false;
|
|
@@ -730,7 +841,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
730
841
|
key: string;
|
|
731
842
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
732
843
|
key: string;
|
|
733
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
844
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
845
|
+
attempt?: number;
|
|
846
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
734
847
|
reset: () => void;
|
|
735
848
|
}, {
|
|
736
849
|
lastArg: {
|
|
@@ -897,7 +1010,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
897
1010
|
requestBody: import("@iblai/iblai-api").PlatformUpdatePostRequest;
|
|
898
1011
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
899
1012
|
requestBody: import("@iblai/iblai-api").PlatformUpdatePostRequest;
|
|
900
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1013
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1014
|
+
attempt?: number;
|
|
1015
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PlatformList, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
901
1016
|
originalArgs?: {
|
|
902
1017
|
requestBody: import("@iblai/iblai-api").PlatformUpdatePostRequest;
|
|
903
1018
|
} | undefined;
|
|
@@ -1063,7 +1178,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1063
1178
|
requestBody: import("@iblai/iblai-api").UserPlatformViewPostRequest;
|
|
1064
1179
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1065
1180
|
requestBody: import("@iblai/iblai-api").UserPlatformViewPostRequest;
|
|
1066
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1181
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1182
|
+
attempt?: number;
|
|
1183
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", any, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1067
1184
|
originalArgs?: {
|
|
1068
1185
|
requestBody: import("@iblai/iblai-api").UserPlatformViewPostRequest;
|
|
1069
1186
|
} | undefined;
|
|
@@ -1088,7 +1205,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1088
1205
|
isUninitialized: true;
|
|
1089
1206
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1090
1207
|
platformKey: string;
|
|
1091
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1209
|
+
attempt?: number;
|
|
1210
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1092
1211
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1093
1212
|
isUninitialized: false;
|
|
1094
1213
|
isLoading: false;
|
|
@@ -1105,7 +1224,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1105
1224
|
error: undefined;
|
|
1106
1225
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1107
1226
|
platformKey: string;
|
|
1108
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1227
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1228
|
+
attempt?: number;
|
|
1229
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1109
1230
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1110
1231
|
isUninitialized: false;
|
|
1111
1232
|
isLoading: false;
|
|
@@ -1118,7 +1239,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1118
1239
|
error: undefined;
|
|
1119
1240
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1120
1241
|
platformKey: string;
|
|
1121
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1243
|
+
attempt?: number;
|
|
1244
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1122
1245
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1123
1246
|
isUninitialized: false;
|
|
1124
1247
|
isLoading: false;
|
|
@@ -1129,7 +1252,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1129
1252
|
isError: true;
|
|
1130
1253
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1131
1254
|
platformKey: string;
|
|
1132
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1255
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1256
|
+
attempt?: number;
|
|
1257
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1133
1258
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1134
1259
|
isUninitialized: false;
|
|
1135
1260
|
isLoading: false;
|
|
@@ -1165,7 +1290,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1165
1290
|
isUninitialized: true;
|
|
1166
1291
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1167
1292
|
platformKey: string;
|
|
1168
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1293
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1294
|
+
attempt?: number;
|
|
1295
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1169
1296
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1170
1297
|
isUninitialized: false;
|
|
1171
1298
|
isLoading: false;
|
|
@@ -1182,7 +1309,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1182
1309
|
error: undefined;
|
|
1183
1310
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1184
1311
|
platformKey: string;
|
|
1185
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1312
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1313
|
+
attempt?: number;
|
|
1314
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1186
1315
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1187
1316
|
isUninitialized: false;
|
|
1188
1317
|
isLoading: false;
|
|
@@ -1195,7 +1324,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1195
1324
|
error: undefined;
|
|
1196
1325
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1197
1326
|
platformKey: string;
|
|
1198
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1327
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1328
|
+
attempt?: number;
|
|
1329
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1199
1330
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1200
1331
|
isUninitialized: false;
|
|
1201
1332
|
isLoading: false;
|
|
@@ -1206,7 +1337,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1206
1337
|
isError: true;
|
|
1207
1338
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1208
1339
|
platformKey: string;
|
|
1209
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1340
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1341
|
+
attempt?: number;
|
|
1342
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>> & {
|
|
1210
1343
|
currentData?: import("@iblai/iblai-api").StudentMentorCreationPermissionResponse | undefined;
|
|
1211
1344
|
isUninitialized: false;
|
|
1212
1345
|
isLoading: false;
|
|
@@ -1219,7 +1352,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1219
1352
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1220
1353
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1221
1354
|
platformKey: string;
|
|
1222
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1355
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1356
|
+
attempt?: number;
|
|
1357
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>>;
|
|
1223
1358
|
}, useSetStudentMentorCreationStatusMutation: <R extends Record<string, any> = ({
|
|
1224
1359
|
requestId?: undefined;
|
|
1225
1360
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -1381,7 +1516,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1381
1516
|
requestBody: import("@iblai/iblai-api").SetStudentMentorCreationPermission;
|
|
1382
1517
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1383
1518
|
requestBody: import("@iblai/iblai-api").SetStudentMentorCreationPermission;
|
|
1384
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1519
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1520
|
+
attempt?: number;
|
|
1521
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").StudentMentorCreationPermissionResponse, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1385
1522
|
originalArgs?: {
|
|
1386
1523
|
requestBody: import("@iblai/iblai-api").SetStudentMentorCreationPermission;
|
|
1387
1524
|
} | undefined;
|
|
@@ -1405,12 +1542,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1405
1542
|
}, "isUninitialized"> & {
|
|
1406
1543
|
isUninitialized: true;
|
|
1407
1544
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1545
|
+
email?: string;
|
|
1408
1546
|
includeUsers?: boolean;
|
|
1547
|
+
name?: string;
|
|
1409
1548
|
owner?: string;
|
|
1410
1549
|
page?: number;
|
|
1411
1550
|
pageSize?: number;
|
|
1412
1551
|
platformKey?: string;
|
|
1413
|
-
|
|
1552
|
+
username?: string;
|
|
1553
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1554
|
+
attempt?: number;
|
|
1555
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1414
1556
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1415
1557
|
isUninitialized: false;
|
|
1416
1558
|
isLoading: false;
|
|
@@ -1426,12 +1568,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1426
1568
|
isFetching: true;
|
|
1427
1569
|
error: undefined;
|
|
1428
1570
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1571
|
+
email?: string;
|
|
1429
1572
|
includeUsers?: boolean;
|
|
1573
|
+
name?: string;
|
|
1430
1574
|
owner?: string;
|
|
1431
1575
|
page?: number;
|
|
1432
1576
|
pageSize?: number;
|
|
1433
1577
|
platformKey?: string;
|
|
1434
|
-
|
|
1578
|
+
username?: string;
|
|
1579
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1580
|
+
attempt?: number;
|
|
1581
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1435
1582
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1436
1583
|
isUninitialized: false;
|
|
1437
1584
|
isLoading: false;
|
|
@@ -1443,12 +1590,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1443
1590
|
isFetching: false;
|
|
1444
1591
|
error: undefined;
|
|
1445
1592
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1593
|
+
email?: string;
|
|
1446
1594
|
includeUsers?: boolean;
|
|
1595
|
+
name?: string;
|
|
1447
1596
|
owner?: string;
|
|
1448
1597
|
page?: number;
|
|
1449
1598
|
pageSize?: number;
|
|
1450
1599
|
platformKey?: string;
|
|
1451
|
-
|
|
1600
|
+
username?: string;
|
|
1601
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1602
|
+
attempt?: number;
|
|
1603
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1452
1604
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1453
1605
|
isUninitialized: false;
|
|
1454
1606
|
isLoading: false;
|
|
@@ -1458,12 +1610,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1458
1610
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1459
1611
|
isError: true;
|
|
1460
1612
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1613
|
+
email?: string;
|
|
1461
1614
|
includeUsers?: boolean;
|
|
1615
|
+
name?: string;
|
|
1462
1616
|
owner?: string;
|
|
1463
1617
|
page?: number;
|
|
1464
1618
|
pageSize?: number;
|
|
1465
1619
|
platformKey?: string;
|
|
1466
|
-
|
|
1620
|
+
username?: string;
|
|
1621
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1622
|
+
attempt?: number;
|
|
1623
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1467
1624
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1468
1625
|
isUninitialized: false;
|
|
1469
1626
|
isLoading: false;
|
|
@@ -1473,11 +1630,14 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1473
1630
|
}, "error">>)>> & {
|
|
1474
1631
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1475
1632
|
}>(arg: {
|
|
1633
|
+
email?: string;
|
|
1476
1634
|
includeUsers?: boolean;
|
|
1635
|
+
name?: string;
|
|
1477
1636
|
owner?: string;
|
|
1478
1637
|
page?: number;
|
|
1479
1638
|
pageSize?: number;
|
|
1480
1639
|
platformKey?: string;
|
|
1640
|
+
username?: string;
|
|
1481
1641
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1482
1642
|
skip?: boolean;
|
|
1483
1643
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -1502,12 +1662,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1502
1662
|
}, "isUninitialized"> & {
|
|
1503
1663
|
isUninitialized: true;
|
|
1504
1664
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1665
|
+
email?: string;
|
|
1505
1666
|
includeUsers?: boolean;
|
|
1667
|
+
name?: string;
|
|
1506
1668
|
owner?: string;
|
|
1507
1669
|
page?: number;
|
|
1508
1670
|
pageSize?: number;
|
|
1509
1671
|
platformKey?: string;
|
|
1510
|
-
|
|
1672
|
+
username?: string;
|
|
1673
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1674
|
+
attempt?: number;
|
|
1675
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1511
1676
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1512
1677
|
isUninitialized: false;
|
|
1513
1678
|
isLoading: false;
|
|
@@ -1523,12 +1688,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1523
1688
|
isFetching: true;
|
|
1524
1689
|
error: undefined;
|
|
1525
1690
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1691
|
+
email?: string;
|
|
1526
1692
|
includeUsers?: boolean;
|
|
1693
|
+
name?: string;
|
|
1527
1694
|
owner?: string;
|
|
1528
1695
|
page?: number;
|
|
1529
1696
|
pageSize?: number;
|
|
1530
1697
|
platformKey?: string;
|
|
1531
|
-
|
|
1698
|
+
username?: string;
|
|
1699
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1700
|
+
attempt?: number;
|
|
1701
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1532
1702
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1533
1703
|
isUninitialized: false;
|
|
1534
1704
|
isLoading: false;
|
|
@@ -1540,12 +1710,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1540
1710
|
isFetching: false;
|
|
1541
1711
|
error: undefined;
|
|
1542
1712
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1713
|
+
email?: string;
|
|
1543
1714
|
includeUsers?: boolean;
|
|
1715
|
+
name?: string;
|
|
1544
1716
|
owner?: string;
|
|
1545
1717
|
page?: number;
|
|
1546
1718
|
pageSize?: number;
|
|
1547
1719
|
platformKey?: string;
|
|
1548
|
-
|
|
1720
|
+
username?: string;
|
|
1721
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1722
|
+
attempt?: number;
|
|
1723
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1549
1724
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1550
1725
|
isUninitialized: false;
|
|
1551
1726
|
isLoading: false;
|
|
@@ -1555,12 +1730,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1555
1730
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1556
1731
|
isError: true;
|
|
1557
1732
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1733
|
+
email?: string;
|
|
1558
1734
|
includeUsers?: boolean;
|
|
1735
|
+
name?: string;
|
|
1559
1736
|
owner?: string;
|
|
1560
1737
|
page?: number;
|
|
1561
1738
|
pageSize?: number;
|
|
1562
1739
|
platformKey?: string;
|
|
1563
|
-
|
|
1740
|
+
username?: string;
|
|
1741
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1742
|
+
attempt?: number;
|
|
1743
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
1564
1744
|
currentData?: import("@iblai/iblai-api").PaginatedRbacGroupList | undefined;
|
|
1565
1745
|
isUninitialized: false;
|
|
1566
1746
|
isLoading: false;
|
|
@@ -1572,12 +1752,17 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1572
1752
|
}) => R) | undefined;
|
|
1573
1753
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1574
1754
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1755
|
+
email?: string;
|
|
1575
1756
|
includeUsers?: boolean;
|
|
1757
|
+
name?: string;
|
|
1576
1758
|
owner?: string;
|
|
1577
1759
|
page?: number;
|
|
1578
1760
|
pageSize?: number;
|
|
1579
1761
|
platformKey?: string;
|
|
1580
|
-
|
|
1762
|
+
username?: string;
|
|
1763
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1764
|
+
attempt?: number;
|
|
1765
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacGroupList, "coreApiSlice", any>>;
|
|
1581
1766
|
}, useCreateRbacGroupMutation: <R extends Record<string, any> = ({
|
|
1582
1767
|
requestId?: undefined;
|
|
1583
1768
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -1739,7 +1924,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1739
1924
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
1740
1925
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1741
1926
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
1742
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1927
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1928
|
+
attempt?: number;
|
|
1929
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacGroup, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1743
1930
|
originalArgs?: {
|
|
1744
1931
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
1745
1932
|
} | undefined;
|
|
@@ -1907,7 +2094,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
1907
2094
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1908
2095
|
id: number;
|
|
1909
2096
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
1910
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2097
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2098
|
+
attempt?: number;
|
|
2099
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacGroup, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1911
2100
|
originalArgs?: {
|
|
1912
2101
|
id: number;
|
|
1913
2102
|
requestBody: import("@iblai/iblai-api").RbacGroup;
|
|
@@ -2076,7 +2265,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2076
2265
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
2077
2266
|
id: number;
|
|
2078
2267
|
platformKey: string;
|
|
2079
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2268
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2269
|
+
attempt?: number;
|
|
2270
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", void, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2080
2271
|
originalArgs?: {
|
|
2081
2272
|
id: number;
|
|
2082
2273
|
platformKey: string;
|
|
@@ -2102,7 +2293,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2102
2293
|
isUninitialized: true;
|
|
2103
2294
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2104
2295
|
id: number;
|
|
2105
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2296
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2297
|
+
attempt?: number;
|
|
2298
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2106
2299
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2107
2300
|
isUninitialized: false;
|
|
2108
2301
|
isLoading: false;
|
|
@@ -2119,7 +2312,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2119
2312
|
error: undefined;
|
|
2120
2313
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2121
2314
|
id: number;
|
|
2122
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2315
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2316
|
+
attempt?: number;
|
|
2317
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2123
2318
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2124
2319
|
isUninitialized: false;
|
|
2125
2320
|
isLoading: false;
|
|
@@ -2132,7 +2327,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2132
2327
|
error: undefined;
|
|
2133
2328
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2134
2329
|
id: number;
|
|
2135
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2330
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2331
|
+
attempt?: number;
|
|
2332
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2136
2333
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2137
2334
|
isUninitialized: false;
|
|
2138
2335
|
isLoading: false;
|
|
@@ -2143,7 +2340,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2143
2340
|
isError: true;
|
|
2144
2341
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2145
2342
|
id: number;
|
|
2146
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2343
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2344
|
+
attempt?: number;
|
|
2345
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2147
2346
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2148
2347
|
isUninitialized: false;
|
|
2149
2348
|
isLoading: false;
|
|
@@ -2179,7 +2378,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2179
2378
|
isUninitialized: true;
|
|
2180
2379
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2181
2380
|
id: number;
|
|
2182
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2381
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2382
|
+
attempt?: number;
|
|
2383
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2183
2384
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2184
2385
|
isUninitialized: false;
|
|
2185
2386
|
isLoading: false;
|
|
@@ -2196,7 +2397,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2196
2397
|
error: undefined;
|
|
2197
2398
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2198
2399
|
id: number;
|
|
2199
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2400
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2401
|
+
attempt?: number;
|
|
2402
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2200
2403
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2201
2404
|
isUninitialized: false;
|
|
2202
2405
|
isLoading: false;
|
|
@@ -2209,7 +2412,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2209
2412
|
error: undefined;
|
|
2210
2413
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2211
2414
|
id: number;
|
|
2212
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2415
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2416
|
+
attempt?: number;
|
|
2417
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2213
2418
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2214
2419
|
isUninitialized: false;
|
|
2215
2420
|
isLoading: false;
|
|
@@ -2220,7 +2425,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2220
2425
|
isError: true;
|
|
2221
2426
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2222
2427
|
id: number;
|
|
2223
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2428
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2429
|
+
attempt?: number;
|
|
2430
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>> & {
|
|
2224
2431
|
currentData?: CustomRbacGroupDetailsResponse | undefined;
|
|
2225
2432
|
isUninitialized: false;
|
|
2226
2433
|
isLoading: false;
|
|
@@ -2233,7 +2440,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2233
2440
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2234
2441
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2235
2442
|
id: number;
|
|
2236
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2443
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2444
|
+
attempt?: number;
|
|
2445
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacGroupDetailsResponse, "coreApiSlice", any>>;
|
|
2237
2446
|
}, useGetRbacPoliciesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2238
2447
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2239
2448
|
originalArgs?: undefined | undefined;
|
|
@@ -2253,11 +2462,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2253
2462
|
}, "isUninitialized"> & {
|
|
2254
2463
|
isUninitialized: true;
|
|
2255
2464
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2465
|
+
email?: string;
|
|
2466
|
+
group?: string;
|
|
2467
|
+
includeGroups?: boolean;
|
|
2468
|
+
includeUsers?: boolean;
|
|
2469
|
+
name?: string;
|
|
2256
2470
|
page?: number;
|
|
2257
2471
|
pageSize?: number;
|
|
2258
2472
|
platformKey?: string;
|
|
2259
2473
|
roleId?: number;
|
|
2260
|
-
|
|
2474
|
+
username?: string;
|
|
2475
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2476
|
+
attempt?: number;
|
|
2477
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2261
2478
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2262
2479
|
isUninitialized: false;
|
|
2263
2480
|
isLoading: false;
|
|
@@ -2273,11 +2490,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2273
2490
|
isFetching: true;
|
|
2274
2491
|
error: undefined;
|
|
2275
2492
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2493
|
+
email?: string;
|
|
2494
|
+
group?: string;
|
|
2495
|
+
includeGroups?: boolean;
|
|
2496
|
+
includeUsers?: boolean;
|
|
2497
|
+
name?: string;
|
|
2276
2498
|
page?: number;
|
|
2277
2499
|
pageSize?: number;
|
|
2278
2500
|
platformKey?: string;
|
|
2279
2501
|
roleId?: number;
|
|
2280
|
-
|
|
2502
|
+
username?: string;
|
|
2503
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2504
|
+
attempt?: number;
|
|
2505
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2281
2506
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2282
2507
|
isUninitialized: false;
|
|
2283
2508
|
isLoading: false;
|
|
@@ -2289,11 +2514,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2289
2514
|
isFetching: false;
|
|
2290
2515
|
error: undefined;
|
|
2291
2516
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2517
|
+
email?: string;
|
|
2518
|
+
group?: string;
|
|
2519
|
+
includeGroups?: boolean;
|
|
2520
|
+
includeUsers?: boolean;
|
|
2521
|
+
name?: string;
|
|
2292
2522
|
page?: number;
|
|
2293
2523
|
pageSize?: number;
|
|
2294
2524
|
platformKey?: string;
|
|
2295
2525
|
roleId?: number;
|
|
2296
|
-
|
|
2526
|
+
username?: string;
|
|
2527
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2528
|
+
attempt?: number;
|
|
2529
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2297
2530
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2298
2531
|
isUninitialized: false;
|
|
2299
2532
|
isLoading: false;
|
|
@@ -2303,11 +2536,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2303
2536
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2304
2537
|
isError: true;
|
|
2305
2538
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2539
|
+
email?: string;
|
|
2540
|
+
group?: string;
|
|
2541
|
+
includeGroups?: boolean;
|
|
2542
|
+
includeUsers?: boolean;
|
|
2543
|
+
name?: string;
|
|
2306
2544
|
page?: number;
|
|
2307
2545
|
pageSize?: number;
|
|
2308
2546
|
platformKey?: string;
|
|
2309
2547
|
roleId?: number;
|
|
2310
|
-
|
|
2548
|
+
username?: string;
|
|
2549
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2550
|
+
attempt?: number;
|
|
2551
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2311
2552
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2312
2553
|
isUninitialized: false;
|
|
2313
2554
|
isLoading: false;
|
|
@@ -2317,10 +2558,16 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2317
2558
|
}, "error">>)>> & {
|
|
2318
2559
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2319
2560
|
}>(arg: {
|
|
2561
|
+
email?: string;
|
|
2562
|
+
group?: string;
|
|
2563
|
+
includeGroups?: boolean;
|
|
2564
|
+
includeUsers?: boolean;
|
|
2565
|
+
name?: string;
|
|
2320
2566
|
page?: number;
|
|
2321
2567
|
pageSize?: number;
|
|
2322
2568
|
platformKey?: string;
|
|
2323
2569
|
roleId?: number;
|
|
2570
|
+
username?: string;
|
|
2324
2571
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
2325
2572
|
skip?: boolean;
|
|
2326
2573
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -2345,11 +2592,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2345
2592
|
}, "isUninitialized"> & {
|
|
2346
2593
|
isUninitialized: true;
|
|
2347
2594
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2595
|
+
email?: string;
|
|
2596
|
+
group?: string;
|
|
2597
|
+
includeGroups?: boolean;
|
|
2598
|
+
includeUsers?: boolean;
|
|
2599
|
+
name?: string;
|
|
2348
2600
|
page?: number;
|
|
2349
2601
|
pageSize?: number;
|
|
2350
2602
|
platformKey?: string;
|
|
2351
2603
|
roleId?: number;
|
|
2352
|
-
|
|
2604
|
+
username?: string;
|
|
2605
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2606
|
+
attempt?: number;
|
|
2607
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2353
2608
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2354
2609
|
isUninitialized: false;
|
|
2355
2610
|
isLoading: false;
|
|
@@ -2365,11 +2620,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2365
2620
|
isFetching: true;
|
|
2366
2621
|
error: undefined;
|
|
2367
2622
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2623
|
+
email?: string;
|
|
2624
|
+
group?: string;
|
|
2625
|
+
includeGroups?: boolean;
|
|
2626
|
+
includeUsers?: boolean;
|
|
2627
|
+
name?: string;
|
|
2368
2628
|
page?: number;
|
|
2369
2629
|
pageSize?: number;
|
|
2370
2630
|
platformKey?: string;
|
|
2371
2631
|
roleId?: number;
|
|
2372
|
-
|
|
2632
|
+
username?: string;
|
|
2633
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2634
|
+
attempt?: number;
|
|
2635
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2373
2636
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2374
2637
|
isUninitialized: false;
|
|
2375
2638
|
isLoading: false;
|
|
@@ -2381,11 +2644,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2381
2644
|
isFetching: false;
|
|
2382
2645
|
error: undefined;
|
|
2383
2646
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2647
|
+
email?: string;
|
|
2648
|
+
group?: string;
|
|
2649
|
+
includeGroups?: boolean;
|
|
2650
|
+
includeUsers?: boolean;
|
|
2651
|
+
name?: string;
|
|
2384
2652
|
page?: number;
|
|
2385
2653
|
pageSize?: number;
|
|
2386
2654
|
platformKey?: string;
|
|
2387
2655
|
roleId?: number;
|
|
2388
|
-
|
|
2656
|
+
username?: string;
|
|
2657
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2658
|
+
attempt?: number;
|
|
2659
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2389
2660
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2390
2661
|
isUninitialized: false;
|
|
2391
2662
|
isLoading: false;
|
|
@@ -2395,11 +2666,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2395
2666
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2396
2667
|
isError: true;
|
|
2397
2668
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2669
|
+
email?: string;
|
|
2670
|
+
group?: string;
|
|
2671
|
+
includeGroups?: boolean;
|
|
2672
|
+
includeUsers?: boolean;
|
|
2673
|
+
name?: string;
|
|
2398
2674
|
page?: number;
|
|
2399
2675
|
pageSize?: number;
|
|
2400
2676
|
platformKey?: string;
|
|
2401
2677
|
roleId?: number;
|
|
2402
|
-
|
|
2678
|
+
username?: string;
|
|
2679
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2680
|
+
attempt?: number;
|
|
2681
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
2403
2682
|
currentData?: import("@iblai/iblai-api").PaginatedRbacPolicyList | undefined;
|
|
2404
2683
|
isUninitialized: false;
|
|
2405
2684
|
isLoading: false;
|
|
@@ -2411,11 +2690,19 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2411
2690
|
}) => R) | undefined;
|
|
2412
2691
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2413
2692
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2693
|
+
email?: string;
|
|
2694
|
+
group?: string;
|
|
2695
|
+
includeGroups?: boolean;
|
|
2696
|
+
includeUsers?: boolean;
|
|
2697
|
+
name?: string;
|
|
2414
2698
|
page?: number;
|
|
2415
2699
|
pageSize?: number;
|
|
2416
2700
|
platformKey?: string;
|
|
2417
2701
|
roleId?: number;
|
|
2418
|
-
|
|
2702
|
+
username?: string;
|
|
2703
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2704
|
+
attempt?: number;
|
|
2705
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacPolicyList, "coreApiSlice", any>>;
|
|
2419
2706
|
}, useCreateRbacPolicyMutation: <R extends Record<string, any> = ({
|
|
2420
2707
|
requestId?: undefined;
|
|
2421
2708
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -2577,7 +2864,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2577
2864
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
2578
2865
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
2579
2866
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
2580
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
2867
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2868
|
+
attempt?: number;
|
|
2869
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacPolicy, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2581
2870
|
originalArgs?: {
|
|
2582
2871
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
2583
2872
|
} | undefined;
|
|
@@ -2745,7 +3034,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2745
3034
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
2746
3035
|
id: number;
|
|
2747
3036
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
2748
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3037
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3038
|
+
attempt?: number;
|
|
3039
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacPolicy, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2749
3040
|
originalArgs?: {
|
|
2750
3041
|
id: number;
|
|
2751
3042
|
requestBody: import("@iblai/iblai-api").RbacPolicy;
|
|
@@ -2914,7 +3205,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2914
3205
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
2915
3206
|
id: number;
|
|
2916
3207
|
platformKey: string;
|
|
2917
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3209
|
+
attempt?: number;
|
|
3210
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", void, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2918
3211
|
originalArgs?: {
|
|
2919
3212
|
id: number;
|
|
2920
3213
|
platformKey: string;
|
|
@@ -2941,7 +3234,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2941
3234
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2942
3235
|
platform_key: string;
|
|
2943
3236
|
id: number;
|
|
2944
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3237
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3238
|
+
attempt?: number;
|
|
3239
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
2945
3240
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
2946
3241
|
isUninitialized: false;
|
|
2947
3242
|
isLoading: false;
|
|
@@ -2959,7 +3254,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2959
3254
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2960
3255
|
platform_key: string;
|
|
2961
3256
|
id: number;
|
|
2962
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3257
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3258
|
+
attempt?: number;
|
|
3259
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
2963
3260
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
2964
3261
|
isUninitialized: false;
|
|
2965
3262
|
isLoading: false;
|
|
@@ -2973,7 +3270,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2973
3270
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2974
3271
|
platform_key: string;
|
|
2975
3272
|
id: number;
|
|
2976
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3273
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3274
|
+
attempt?: number;
|
|
3275
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
2977
3276
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
2978
3277
|
isUninitialized: false;
|
|
2979
3278
|
isLoading: false;
|
|
@@ -2985,7 +3284,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
2985
3284
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2986
3285
|
platform_key: string;
|
|
2987
3286
|
id: number;
|
|
2988
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3287
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3288
|
+
attempt?: number;
|
|
3289
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
2989
3290
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
2990
3291
|
isUninitialized: false;
|
|
2991
3292
|
isLoading: false;
|
|
@@ -3023,7 +3324,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3023
3324
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3024
3325
|
platform_key: string;
|
|
3025
3326
|
id: number;
|
|
3026
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3327
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3328
|
+
attempt?: number;
|
|
3329
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
3027
3330
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
3028
3331
|
isUninitialized: false;
|
|
3029
3332
|
isLoading: false;
|
|
@@ -3041,7 +3344,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3041
3344
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3042
3345
|
platform_key: string;
|
|
3043
3346
|
id: number;
|
|
3044
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3347
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3348
|
+
attempt?: number;
|
|
3349
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
3045
3350
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
3046
3351
|
isUninitialized: false;
|
|
3047
3352
|
isLoading: false;
|
|
@@ -3055,7 +3360,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3055
3360
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3056
3361
|
platform_key: string;
|
|
3057
3362
|
id: number;
|
|
3058
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3363
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3364
|
+
attempt?: number;
|
|
3365
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
3059
3366
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
3060
3367
|
isUninitialized: false;
|
|
3061
3368
|
isLoading: false;
|
|
@@ -3067,7 +3374,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3067
3374
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3068
3375
|
platform_key: string;
|
|
3069
3376
|
id: number;
|
|
3070
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3377
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3378
|
+
attempt?: number;
|
|
3379
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>> & {
|
|
3071
3380
|
currentData?: CustomRbacPolicyDetailsResponse | undefined;
|
|
3072
3381
|
isUninitialized: false;
|
|
3073
3382
|
isLoading: false;
|
|
@@ -3081,7 +3390,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3081
3390
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3082
3391
|
platform_key: string;
|
|
3083
3392
|
id: number;
|
|
3084
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3393
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3394
|
+
attempt?: number;
|
|
3395
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>>;
|
|
3085
3396
|
}, useGetRbacRolesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3086
3397
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3087
3398
|
originalArgs?: undefined | undefined;
|
|
@@ -3101,10 +3412,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3101
3412
|
}, "isUninitialized"> & {
|
|
3102
3413
|
isUninitialized: true;
|
|
3103
3414
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3415
|
+
name?: string;
|
|
3104
3416
|
page?: number;
|
|
3105
3417
|
pageSize?: number;
|
|
3106
3418
|
platformKey?: string;
|
|
3107
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3419
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3420
|
+
attempt?: number;
|
|
3421
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3108
3422
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3109
3423
|
isUninitialized: false;
|
|
3110
3424
|
isLoading: false;
|
|
@@ -3120,10 +3434,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3120
3434
|
isFetching: true;
|
|
3121
3435
|
error: undefined;
|
|
3122
3436
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3437
|
+
name?: string;
|
|
3123
3438
|
page?: number;
|
|
3124
3439
|
pageSize?: number;
|
|
3125
3440
|
platformKey?: string;
|
|
3126
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3441
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3442
|
+
attempt?: number;
|
|
3443
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3127
3444
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3128
3445
|
isUninitialized: false;
|
|
3129
3446
|
isLoading: false;
|
|
@@ -3135,10 +3452,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3135
3452
|
isFetching: false;
|
|
3136
3453
|
error: undefined;
|
|
3137
3454
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3455
|
+
name?: string;
|
|
3138
3456
|
page?: number;
|
|
3139
3457
|
pageSize?: number;
|
|
3140
3458
|
platformKey?: string;
|
|
3141
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3459
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3460
|
+
attempt?: number;
|
|
3461
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3142
3462
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3143
3463
|
isUninitialized: false;
|
|
3144
3464
|
isLoading: false;
|
|
@@ -3148,10 +3468,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3148
3468
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3149
3469
|
isError: true;
|
|
3150
3470
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3471
|
+
name?: string;
|
|
3151
3472
|
page?: number;
|
|
3152
3473
|
pageSize?: number;
|
|
3153
3474
|
platformKey?: string;
|
|
3154
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3475
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3476
|
+
attempt?: number;
|
|
3477
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3155
3478
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3156
3479
|
isUninitialized: false;
|
|
3157
3480
|
isLoading: false;
|
|
@@ -3161,6 +3484,7 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3161
3484
|
}, "error">>)>> & {
|
|
3162
3485
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3163
3486
|
}>(arg: {
|
|
3487
|
+
name?: string;
|
|
3164
3488
|
page?: number;
|
|
3165
3489
|
pageSize?: number;
|
|
3166
3490
|
platformKey?: string;
|
|
@@ -3188,10 +3512,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3188
3512
|
}, "isUninitialized"> & {
|
|
3189
3513
|
isUninitialized: true;
|
|
3190
3514
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3515
|
+
name?: string;
|
|
3191
3516
|
page?: number;
|
|
3192
3517
|
pageSize?: number;
|
|
3193
3518
|
platformKey?: string;
|
|
3194
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3519
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3520
|
+
attempt?: number;
|
|
3521
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3195
3522
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3196
3523
|
isUninitialized: false;
|
|
3197
3524
|
isLoading: false;
|
|
@@ -3207,10 +3534,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3207
3534
|
isFetching: true;
|
|
3208
3535
|
error: undefined;
|
|
3209
3536
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3537
|
+
name?: string;
|
|
3210
3538
|
page?: number;
|
|
3211
3539
|
pageSize?: number;
|
|
3212
3540
|
platformKey?: string;
|
|
3213
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3541
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3542
|
+
attempt?: number;
|
|
3543
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3214
3544
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3215
3545
|
isUninitialized: false;
|
|
3216
3546
|
isLoading: false;
|
|
@@ -3222,10 +3552,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3222
3552
|
isFetching: false;
|
|
3223
3553
|
error: undefined;
|
|
3224
3554
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3555
|
+
name?: string;
|
|
3225
3556
|
page?: number;
|
|
3226
3557
|
pageSize?: number;
|
|
3227
3558
|
platformKey?: string;
|
|
3228
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3559
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3560
|
+
attempt?: number;
|
|
3561
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3229
3562
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3230
3563
|
isUninitialized: false;
|
|
3231
3564
|
isLoading: false;
|
|
@@ -3235,10 +3568,13 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3235
3568
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3236
3569
|
isError: true;
|
|
3237
3570
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3571
|
+
name?: string;
|
|
3238
3572
|
page?: number;
|
|
3239
3573
|
pageSize?: number;
|
|
3240
3574
|
platformKey?: string;
|
|
3241
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3575
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3576
|
+
attempt?: number;
|
|
3577
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3242
3578
|
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3243
3579
|
isUninitialized: false;
|
|
3244
3580
|
isLoading: false;
|
|
@@ -3250,11 +3586,218 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3250
3586
|
}) => R) | undefined;
|
|
3251
3587
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3252
3588
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3589
|
+
name?: string;
|
|
3590
|
+
page?: number;
|
|
3591
|
+
pageSize?: number;
|
|
3592
|
+
platformKey?: string;
|
|
3593
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3594
|
+
attempt?: number;
|
|
3595
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>>;
|
|
3596
|
+
}, useLazyGetRbacRolesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3597
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3598
|
+
originalArgs?: undefined | undefined;
|
|
3599
|
+
data?: undefined | undefined;
|
|
3600
|
+
error?: undefined | undefined;
|
|
3601
|
+
requestId?: undefined | undefined;
|
|
3602
|
+
endpointName?: string | undefined;
|
|
3603
|
+
startedTimeStamp?: undefined | undefined;
|
|
3604
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3605
|
+
} & {
|
|
3606
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3607
|
+
isUninitialized: false;
|
|
3608
|
+
isLoading: false;
|
|
3609
|
+
isFetching: false;
|
|
3610
|
+
isSuccess: false;
|
|
3611
|
+
isError: false;
|
|
3612
|
+
}, "isUninitialized"> & {
|
|
3613
|
+
isUninitialized: true;
|
|
3614
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3615
|
+
name?: string;
|
|
3616
|
+
page?: number;
|
|
3617
|
+
pageSize?: number;
|
|
3618
|
+
platformKey?: string;
|
|
3619
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3620
|
+
attempt?: number;
|
|
3621
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3622
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3623
|
+
isUninitialized: false;
|
|
3624
|
+
isLoading: false;
|
|
3625
|
+
isFetching: false;
|
|
3626
|
+
isSuccess: false;
|
|
3627
|
+
isError: false;
|
|
3628
|
+
}, {
|
|
3629
|
+
isLoading: true;
|
|
3630
|
+
isFetching: boolean;
|
|
3631
|
+
data: undefined;
|
|
3632
|
+
} | ({
|
|
3633
|
+
isSuccess: true;
|
|
3634
|
+
isFetching: true;
|
|
3635
|
+
error: undefined;
|
|
3636
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3637
|
+
name?: string;
|
|
3638
|
+
page?: number;
|
|
3639
|
+
pageSize?: number;
|
|
3640
|
+
platformKey?: string;
|
|
3641
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3642
|
+
attempt?: number;
|
|
3643
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3644
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3645
|
+
isUninitialized: false;
|
|
3646
|
+
isLoading: false;
|
|
3647
|
+
isFetching: false;
|
|
3648
|
+
isSuccess: false;
|
|
3649
|
+
isError: false;
|
|
3650
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3651
|
+
isSuccess: true;
|
|
3652
|
+
isFetching: false;
|
|
3653
|
+
error: undefined;
|
|
3654
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3655
|
+
name?: string;
|
|
3656
|
+
page?: number;
|
|
3657
|
+
pageSize?: number;
|
|
3658
|
+
platformKey?: string;
|
|
3659
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3660
|
+
attempt?: number;
|
|
3661
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3662
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3663
|
+
isUninitialized: false;
|
|
3664
|
+
isLoading: false;
|
|
3665
|
+
isFetching: false;
|
|
3666
|
+
isSuccess: false;
|
|
3667
|
+
isError: false;
|
|
3668
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3669
|
+
isError: true;
|
|
3670
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3671
|
+
name?: string;
|
|
3672
|
+
page?: number;
|
|
3673
|
+
pageSize?: number;
|
|
3674
|
+
platformKey?: string;
|
|
3675
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3676
|
+
attempt?: number;
|
|
3677
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3678
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3679
|
+
isUninitialized: false;
|
|
3680
|
+
isLoading: false;
|
|
3681
|
+
isFetching: false;
|
|
3682
|
+
isSuccess: false;
|
|
3683
|
+
isError: false;
|
|
3684
|
+
}, "error">>)>> & {
|
|
3685
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3686
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
3687
|
+
skip?: boolean;
|
|
3688
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3689
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3690
|
+
originalArgs?: undefined | undefined;
|
|
3691
|
+
data?: undefined | undefined;
|
|
3692
|
+
error?: undefined | undefined;
|
|
3693
|
+
requestId?: undefined | undefined;
|
|
3694
|
+
endpointName?: string | undefined;
|
|
3695
|
+
startedTimeStamp?: undefined | undefined;
|
|
3696
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3697
|
+
} & {
|
|
3698
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3699
|
+
isUninitialized: false;
|
|
3700
|
+
isLoading: false;
|
|
3701
|
+
isFetching: false;
|
|
3702
|
+
isSuccess: false;
|
|
3703
|
+
isError: false;
|
|
3704
|
+
}, "isUninitialized"> & {
|
|
3705
|
+
isUninitialized: true;
|
|
3706
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3707
|
+
name?: string;
|
|
3708
|
+
page?: number;
|
|
3709
|
+
pageSize?: number;
|
|
3710
|
+
platformKey?: string;
|
|
3711
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3712
|
+
attempt?: number;
|
|
3713
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3714
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3715
|
+
isUninitialized: false;
|
|
3716
|
+
isLoading: false;
|
|
3717
|
+
isFetching: false;
|
|
3718
|
+
isSuccess: false;
|
|
3719
|
+
isError: false;
|
|
3720
|
+
}, {
|
|
3721
|
+
isLoading: true;
|
|
3722
|
+
isFetching: boolean;
|
|
3723
|
+
data: undefined;
|
|
3724
|
+
} | ({
|
|
3725
|
+
isSuccess: true;
|
|
3726
|
+
isFetching: true;
|
|
3727
|
+
error: undefined;
|
|
3728
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3729
|
+
name?: string;
|
|
3730
|
+
page?: number;
|
|
3731
|
+
pageSize?: number;
|
|
3732
|
+
platformKey?: string;
|
|
3733
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3734
|
+
attempt?: number;
|
|
3735
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3736
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3737
|
+
isUninitialized: false;
|
|
3738
|
+
isLoading: false;
|
|
3739
|
+
isFetching: false;
|
|
3740
|
+
isSuccess: false;
|
|
3741
|
+
isError: false;
|
|
3742
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3743
|
+
isSuccess: true;
|
|
3744
|
+
isFetching: false;
|
|
3745
|
+
error: undefined;
|
|
3746
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3747
|
+
name?: string;
|
|
3748
|
+
page?: number;
|
|
3749
|
+
pageSize?: number;
|
|
3750
|
+
platformKey?: string;
|
|
3751
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3752
|
+
attempt?: number;
|
|
3753
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3754
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3755
|
+
isUninitialized: false;
|
|
3756
|
+
isLoading: false;
|
|
3757
|
+
isFetching: false;
|
|
3758
|
+
isSuccess: false;
|
|
3759
|
+
isError: false;
|
|
3760
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3761
|
+
isError: true;
|
|
3762
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3763
|
+
name?: string;
|
|
3764
|
+
page?: number;
|
|
3765
|
+
pageSize?: number;
|
|
3766
|
+
platformKey?: string;
|
|
3767
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3768
|
+
attempt?: number;
|
|
3769
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>> & {
|
|
3770
|
+
currentData?: import("@iblai/iblai-api").PaginatedRbacRoleList | undefined;
|
|
3771
|
+
isUninitialized: false;
|
|
3772
|
+
isLoading: false;
|
|
3773
|
+
isFetching: false;
|
|
3774
|
+
isSuccess: false;
|
|
3775
|
+
isError: false;
|
|
3776
|
+
}, "error">>)>> & {
|
|
3777
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3778
|
+
}) => R) | undefined;
|
|
3779
|
+
}, "skip">) | undefined) => [(arg: {
|
|
3780
|
+
name?: string;
|
|
3781
|
+
page?: number;
|
|
3782
|
+
pageSize?: number;
|
|
3783
|
+
platformKey?: string;
|
|
3784
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3785
|
+
name?: string;
|
|
3786
|
+
page?: number;
|
|
3787
|
+
pageSize?: number;
|
|
3788
|
+
platformKey?: string;
|
|
3789
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3790
|
+
attempt?: number;
|
|
3791
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").PaginatedRbacRoleList, "coreApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3792
|
+
reset: () => void;
|
|
3793
|
+
}, {
|
|
3794
|
+
lastArg: {
|
|
3795
|
+
name?: string;
|
|
3253
3796
|
page?: number;
|
|
3254
3797
|
pageSize?: number;
|
|
3255
3798
|
platformKey?: string;
|
|
3256
|
-
}
|
|
3257
|
-
}, useCreateRbacRoleMutation: <R extends Record<string, any> = ({
|
|
3799
|
+
};
|
|
3800
|
+
}], useCreateRbacRoleMutation: <R extends Record<string, any> = ({
|
|
3258
3801
|
requestId?: undefined;
|
|
3259
3802
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3260
3803
|
data?: undefined;
|
|
@@ -3415,7 +3958,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3415
3958
|
requestBody: import("@iblai/iblai-api").RbacRole;
|
|
3416
3959
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3417
3960
|
requestBody: import("@iblai/iblai-api").RbacRole;
|
|
3418
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
3961
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3962
|
+
attempt?: number;
|
|
3963
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacRole, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3419
3964
|
originalArgs?: {
|
|
3420
3965
|
requestBody: import("@iblai/iblai-api").RbacRole;
|
|
3421
3966
|
} | undefined;
|
|
@@ -3583,7 +4128,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3583
4128
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3584
4129
|
id: number;
|
|
3585
4130
|
requestBody: import("@iblai/iblai-api").RbacRole;
|
|
3586
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4131
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4132
|
+
attempt?: number;
|
|
4133
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacRole, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3587
4134
|
originalArgs?: {
|
|
3588
4135
|
id: number;
|
|
3589
4136
|
requestBody: import("@iblai/iblai-api").RbacRole;
|
|
@@ -3752,7 +4299,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3752
4299
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3753
4300
|
id: number;
|
|
3754
4301
|
requestBody?: import("@iblai/iblai-api").PatchedRbacRole;
|
|
3755
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4302
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4303
|
+
attempt?: number;
|
|
4304
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").RbacRole, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3756
4305
|
originalArgs?: {
|
|
3757
4306
|
id: number;
|
|
3758
4307
|
requestBody?: import("@iblai/iblai-api").PatchedRbacRole;
|
|
@@ -3921,7 +4470,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3921
4470
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3922
4471
|
id: number;
|
|
3923
4472
|
platformKey: string;
|
|
3924
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4473
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4474
|
+
attempt?: number;
|
|
4475
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", void, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3925
4476
|
originalArgs?: {
|
|
3926
4477
|
id: number;
|
|
3927
4478
|
platformKey: string;
|
|
@@ -3948,7 +4499,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3948
4499
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3949
4500
|
platform_key: string;
|
|
3950
4501
|
id: number;
|
|
3951
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4502
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4503
|
+
attempt?: number;
|
|
4504
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
3952
4505
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
3953
4506
|
isUninitialized: false;
|
|
3954
4507
|
isLoading: false;
|
|
@@ -3966,7 +4519,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3966
4519
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3967
4520
|
platform_key: string;
|
|
3968
4521
|
id: number;
|
|
3969
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4522
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4523
|
+
attempt?: number;
|
|
4524
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
3970
4525
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
3971
4526
|
isUninitialized: false;
|
|
3972
4527
|
isLoading: false;
|
|
@@ -3980,7 +4535,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3980
4535
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3981
4536
|
platform_key: string;
|
|
3982
4537
|
id: number;
|
|
3983
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4538
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4539
|
+
attempt?: number;
|
|
4540
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
3984
4541
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
3985
4542
|
isUninitialized: false;
|
|
3986
4543
|
isLoading: false;
|
|
@@ -3992,7 +4549,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
3992
4549
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3993
4550
|
platform_key: string;
|
|
3994
4551
|
id: number;
|
|
3995
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4552
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4553
|
+
attempt?: number;
|
|
4554
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
3996
4555
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
3997
4556
|
isUninitialized: false;
|
|
3998
4557
|
isLoading: false;
|
|
@@ -4030,7 +4589,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4030
4589
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4031
4590
|
platform_key: string;
|
|
4032
4591
|
id: number;
|
|
4033
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4592
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4593
|
+
attempt?: number;
|
|
4594
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
4034
4595
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
4035
4596
|
isUninitialized: false;
|
|
4036
4597
|
isLoading: false;
|
|
@@ -4048,7 +4609,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4048
4609
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4049
4610
|
platform_key: string;
|
|
4050
4611
|
id: number;
|
|
4051
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4612
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4613
|
+
attempt?: number;
|
|
4614
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
4052
4615
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
4053
4616
|
isUninitialized: false;
|
|
4054
4617
|
isLoading: false;
|
|
@@ -4062,7 +4625,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4062
4625
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4063
4626
|
platform_key: string;
|
|
4064
4627
|
id: number;
|
|
4065
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4628
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4629
|
+
attempt?: number;
|
|
4630
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
4066
4631
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
4067
4632
|
isUninitialized: false;
|
|
4068
4633
|
isLoading: false;
|
|
@@ -4074,7 +4639,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4074
4639
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4075
4640
|
platform_key: string;
|
|
4076
4641
|
id: number;
|
|
4077
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4642
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4643
|
+
attempt?: number;
|
|
4644
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>> & {
|
|
4078
4645
|
currentData?: CustomRbacRoleDetailsResponse | undefined;
|
|
4079
4646
|
isUninitialized: false;
|
|
4080
4647
|
isLoading: false;
|
|
@@ -4088,7 +4655,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4088
4655
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4089
4656
|
platform_key: string;
|
|
4090
4657
|
id: number;
|
|
4091
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4658
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4659
|
+
attempt?: number;
|
|
4660
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", CustomRbacRoleDetailsResponse, "coreApiSlice", any>>;
|
|
4092
4661
|
}, useGetRbacMentorAccessListQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
4093
4662
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4094
4663
|
originalArgs?: undefined | undefined;
|
|
@@ -4110,7 +4679,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4110
4679
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4111
4680
|
mentorId: number;
|
|
4112
4681
|
platformKey: string;
|
|
4113
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4682
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4683
|
+
attempt?: number;
|
|
4684
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4114
4685
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4115
4686
|
isUninitialized: false;
|
|
4116
4687
|
isLoading: false;
|
|
@@ -4128,7 +4699,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4128
4699
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4129
4700
|
mentorId: number;
|
|
4130
4701
|
platformKey: string;
|
|
4131
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4702
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4703
|
+
attempt?: number;
|
|
4704
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4132
4705
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4133
4706
|
isUninitialized: false;
|
|
4134
4707
|
isLoading: false;
|
|
@@ -4142,7 +4715,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4142
4715
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4143
4716
|
mentorId: number;
|
|
4144
4717
|
platformKey: string;
|
|
4145
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4718
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4719
|
+
attempt?: number;
|
|
4720
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4146
4721
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4147
4722
|
isUninitialized: false;
|
|
4148
4723
|
isLoading: false;
|
|
@@ -4154,7 +4729,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4154
4729
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4155
4730
|
mentorId: number;
|
|
4156
4731
|
platformKey: string;
|
|
4157
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4732
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4733
|
+
attempt?: number;
|
|
4734
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4158
4735
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4159
4736
|
isUninitialized: false;
|
|
4160
4737
|
isLoading: false;
|
|
@@ -4192,7 +4769,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4192
4769
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4193
4770
|
mentorId: number;
|
|
4194
4771
|
platformKey: string;
|
|
4195
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4772
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4773
|
+
attempt?: number;
|
|
4774
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4196
4775
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4197
4776
|
isUninitialized: false;
|
|
4198
4777
|
isLoading: false;
|
|
@@ -4210,7 +4789,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4210
4789
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4211
4790
|
mentorId: number;
|
|
4212
4791
|
platformKey: string;
|
|
4213
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4792
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4793
|
+
attempt?: number;
|
|
4794
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4214
4795
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4215
4796
|
isUninitialized: false;
|
|
4216
4797
|
isLoading: false;
|
|
@@ -4224,7 +4805,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4224
4805
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4225
4806
|
mentorId: number;
|
|
4226
4807
|
platformKey: string;
|
|
4227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4808
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4809
|
+
attempt?: number;
|
|
4810
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4228
4811
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4229
4812
|
isUninitialized: false;
|
|
4230
4813
|
isLoading: false;
|
|
@@ -4236,7 +4819,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4236
4819
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4237
4820
|
mentorId: number;
|
|
4238
4821
|
platformKey: string;
|
|
4239
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4822
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4823
|
+
attempt?: number;
|
|
4824
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>> & {
|
|
4240
4825
|
currentData?: import("@iblai/iblai-api").MentorPolicy[] | undefined;
|
|
4241
4826
|
isUninitialized: false;
|
|
4242
4827
|
isLoading: false;
|
|
@@ -4250,7 +4835,9 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4250
4835
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
4251
4836
|
mentorId: number;
|
|
4252
4837
|
platformKey: string;
|
|
4253
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
4838
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4839
|
+
attempt?: number;
|
|
4840
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy[], "coreApiSlice", any>>;
|
|
4254
4841
|
}, useUpdateRbacMentorAccessMutation: <R extends Record<string, any> = ({
|
|
4255
4842
|
requestId?: undefined;
|
|
4256
4843
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -4412,9 +4999,541 @@ export declare const useCreateRedirectTokenMutation: <R extends Record<string, a
|
|
|
4412
4999
|
requestBody: import("@iblai/iblai-api").MentorPolicy;
|
|
4413
5000
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4414
5001
|
requestBody: import("@iblai/iblai-api").MentorPolicy;
|
|
4415
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
5002
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5003
|
+
attempt?: number;
|
|
5004
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").MentorPolicy, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4416
5005
|
originalArgs?: {
|
|
4417
5006
|
requestBody: import("@iblai/iblai-api").MentorPolicy;
|
|
4418
5007
|
} | undefined;
|
|
4419
5008
|
reset: () => void;
|
|
5009
|
+
}], useGetRbacTeamsAccessListQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5010
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5011
|
+
originalArgs?: undefined | undefined;
|
|
5012
|
+
data?: undefined | undefined;
|
|
5013
|
+
error?: undefined | undefined;
|
|
5014
|
+
requestId?: undefined | undefined;
|
|
5015
|
+
endpointName?: string | undefined;
|
|
5016
|
+
startedTimeStamp?: undefined | undefined;
|
|
5017
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5018
|
+
} & {
|
|
5019
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5020
|
+
isUninitialized: false;
|
|
5021
|
+
isLoading: false;
|
|
5022
|
+
isFetching: false;
|
|
5023
|
+
isSuccess: false;
|
|
5024
|
+
isError: false;
|
|
5025
|
+
}, "isUninitialized"> & {
|
|
5026
|
+
isUninitialized: true;
|
|
5027
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5028
|
+
platformKey: string;
|
|
5029
|
+
usergroupId: number;
|
|
5030
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5031
|
+
attempt?: number;
|
|
5032
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5033
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5034
|
+
isUninitialized: false;
|
|
5035
|
+
isLoading: false;
|
|
5036
|
+
isFetching: false;
|
|
5037
|
+
isSuccess: false;
|
|
5038
|
+
isError: false;
|
|
5039
|
+
}, {
|
|
5040
|
+
isLoading: true;
|
|
5041
|
+
isFetching: boolean;
|
|
5042
|
+
data: undefined;
|
|
5043
|
+
} | ({
|
|
5044
|
+
isSuccess: true;
|
|
5045
|
+
isFetching: true;
|
|
5046
|
+
error: undefined;
|
|
5047
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5048
|
+
platformKey: string;
|
|
5049
|
+
usergroupId: number;
|
|
5050
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5051
|
+
attempt?: number;
|
|
5052
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5053
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5054
|
+
isUninitialized: false;
|
|
5055
|
+
isLoading: false;
|
|
5056
|
+
isFetching: false;
|
|
5057
|
+
isSuccess: false;
|
|
5058
|
+
isError: false;
|
|
5059
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5060
|
+
isSuccess: true;
|
|
5061
|
+
isFetching: false;
|
|
5062
|
+
error: undefined;
|
|
5063
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5064
|
+
platformKey: string;
|
|
5065
|
+
usergroupId: number;
|
|
5066
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5067
|
+
attempt?: number;
|
|
5068
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5069
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5070
|
+
isUninitialized: false;
|
|
5071
|
+
isLoading: false;
|
|
5072
|
+
isFetching: false;
|
|
5073
|
+
isSuccess: false;
|
|
5074
|
+
isError: false;
|
|
5075
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5076
|
+
isError: true;
|
|
5077
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5078
|
+
platformKey: string;
|
|
5079
|
+
usergroupId: number;
|
|
5080
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5081
|
+
attempt?: number;
|
|
5082
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5083
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5084
|
+
isUninitialized: false;
|
|
5085
|
+
isLoading: false;
|
|
5086
|
+
isFetching: false;
|
|
5087
|
+
isSuccess: false;
|
|
5088
|
+
isError: false;
|
|
5089
|
+
}, "error">>)>> & {
|
|
5090
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5091
|
+
}>(arg: {
|
|
5092
|
+
platformKey: string;
|
|
5093
|
+
usergroupId: number;
|
|
5094
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
5095
|
+
skip?: boolean;
|
|
5096
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
5097
|
+
} & {
|
|
5098
|
+
skip?: boolean;
|
|
5099
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5100
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5101
|
+
originalArgs?: undefined | undefined;
|
|
5102
|
+
data?: undefined | undefined;
|
|
5103
|
+
error?: undefined | undefined;
|
|
5104
|
+
requestId?: undefined | undefined;
|
|
5105
|
+
endpointName?: string | undefined;
|
|
5106
|
+
startedTimeStamp?: undefined | undefined;
|
|
5107
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5108
|
+
} & {
|
|
5109
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5110
|
+
isUninitialized: false;
|
|
5111
|
+
isLoading: false;
|
|
5112
|
+
isFetching: false;
|
|
5113
|
+
isSuccess: false;
|
|
5114
|
+
isError: false;
|
|
5115
|
+
}, "isUninitialized"> & {
|
|
5116
|
+
isUninitialized: true;
|
|
5117
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5118
|
+
platformKey: string;
|
|
5119
|
+
usergroupId: number;
|
|
5120
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5121
|
+
attempt?: number;
|
|
5122
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5123
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5124
|
+
isUninitialized: false;
|
|
5125
|
+
isLoading: false;
|
|
5126
|
+
isFetching: false;
|
|
5127
|
+
isSuccess: false;
|
|
5128
|
+
isError: false;
|
|
5129
|
+
}, {
|
|
5130
|
+
isLoading: true;
|
|
5131
|
+
isFetching: boolean;
|
|
5132
|
+
data: undefined;
|
|
5133
|
+
} | ({
|
|
5134
|
+
isSuccess: true;
|
|
5135
|
+
isFetching: true;
|
|
5136
|
+
error: undefined;
|
|
5137
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5138
|
+
platformKey: string;
|
|
5139
|
+
usergroupId: number;
|
|
5140
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5141
|
+
attempt?: number;
|
|
5142
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5143
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5144
|
+
isUninitialized: false;
|
|
5145
|
+
isLoading: false;
|
|
5146
|
+
isFetching: false;
|
|
5147
|
+
isSuccess: false;
|
|
5148
|
+
isError: false;
|
|
5149
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5150
|
+
isSuccess: true;
|
|
5151
|
+
isFetching: false;
|
|
5152
|
+
error: undefined;
|
|
5153
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5154
|
+
platformKey: string;
|
|
5155
|
+
usergroupId: number;
|
|
5156
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5157
|
+
attempt?: number;
|
|
5158
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5159
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5160
|
+
isUninitialized: false;
|
|
5161
|
+
isLoading: false;
|
|
5162
|
+
isFetching: false;
|
|
5163
|
+
isSuccess: false;
|
|
5164
|
+
isError: false;
|
|
5165
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5166
|
+
isError: true;
|
|
5167
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5168
|
+
platformKey: string;
|
|
5169
|
+
usergroupId: number;
|
|
5170
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5171
|
+
attempt?: number;
|
|
5172
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5173
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5174
|
+
isUninitialized: false;
|
|
5175
|
+
isLoading: false;
|
|
5176
|
+
isFetching: false;
|
|
5177
|
+
isSuccess: false;
|
|
5178
|
+
isError: false;
|
|
5179
|
+
}, "error">>)>> & {
|
|
5180
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5181
|
+
}) => R) | undefined;
|
|
5182
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5183
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5184
|
+
platformKey: string;
|
|
5185
|
+
usergroupId: number;
|
|
5186
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5187
|
+
attempt?: number;
|
|
5188
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>>;
|
|
5189
|
+
}, useLazyGetRbacTeamsAccessListQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5190
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5191
|
+
originalArgs?: undefined | undefined;
|
|
5192
|
+
data?: undefined | undefined;
|
|
5193
|
+
error?: undefined | undefined;
|
|
5194
|
+
requestId?: undefined | undefined;
|
|
5195
|
+
endpointName?: string | undefined;
|
|
5196
|
+
startedTimeStamp?: undefined | undefined;
|
|
5197
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5198
|
+
} & {
|
|
5199
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5200
|
+
isUninitialized: false;
|
|
5201
|
+
isLoading: false;
|
|
5202
|
+
isFetching: false;
|
|
5203
|
+
isSuccess: false;
|
|
5204
|
+
isError: false;
|
|
5205
|
+
}, "isUninitialized"> & {
|
|
5206
|
+
isUninitialized: true;
|
|
5207
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5208
|
+
platformKey: string;
|
|
5209
|
+
usergroupId: number;
|
|
5210
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5211
|
+
attempt?: number;
|
|
5212
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5213
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5214
|
+
isUninitialized: false;
|
|
5215
|
+
isLoading: false;
|
|
5216
|
+
isFetching: false;
|
|
5217
|
+
isSuccess: false;
|
|
5218
|
+
isError: false;
|
|
5219
|
+
}, {
|
|
5220
|
+
isLoading: true;
|
|
5221
|
+
isFetching: boolean;
|
|
5222
|
+
data: undefined;
|
|
5223
|
+
} | ({
|
|
5224
|
+
isSuccess: true;
|
|
5225
|
+
isFetching: true;
|
|
5226
|
+
error: undefined;
|
|
5227
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5228
|
+
platformKey: string;
|
|
5229
|
+
usergroupId: number;
|
|
5230
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5231
|
+
attempt?: number;
|
|
5232
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5233
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5234
|
+
isUninitialized: false;
|
|
5235
|
+
isLoading: false;
|
|
5236
|
+
isFetching: false;
|
|
5237
|
+
isSuccess: false;
|
|
5238
|
+
isError: false;
|
|
5239
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5240
|
+
isSuccess: true;
|
|
5241
|
+
isFetching: false;
|
|
5242
|
+
error: undefined;
|
|
5243
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5244
|
+
platformKey: string;
|
|
5245
|
+
usergroupId: number;
|
|
5246
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5247
|
+
attempt?: number;
|
|
5248
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5249
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5250
|
+
isUninitialized: false;
|
|
5251
|
+
isLoading: false;
|
|
5252
|
+
isFetching: false;
|
|
5253
|
+
isSuccess: false;
|
|
5254
|
+
isError: false;
|
|
5255
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5256
|
+
isError: true;
|
|
5257
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5258
|
+
platformKey: string;
|
|
5259
|
+
usergroupId: number;
|
|
5260
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5261
|
+
attempt?: number;
|
|
5262
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5263
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5264
|
+
isUninitialized: false;
|
|
5265
|
+
isLoading: false;
|
|
5266
|
+
isFetching: false;
|
|
5267
|
+
isSuccess: false;
|
|
5268
|
+
isError: false;
|
|
5269
|
+
}, "error">>)>> & {
|
|
5270
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5271
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
5272
|
+
skip?: boolean;
|
|
5273
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5274
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5275
|
+
originalArgs?: undefined | undefined;
|
|
5276
|
+
data?: undefined | undefined;
|
|
5277
|
+
error?: undefined | undefined;
|
|
5278
|
+
requestId?: undefined | undefined;
|
|
5279
|
+
endpointName?: string | undefined;
|
|
5280
|
+
startedTimeStamp?: undefined | undefined;
|
|
5281
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5282
|
+
} & {
|
|
5283
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5284
|
+
isUninitialized: false;
|
|
5285
|
+
isLoading: false;
|
|
5286
|
+
isFetching: false;
|
|
5287
|
+
isSuccess: false;
|
|
5288
|
+
isError: false;
|
|
5289
|
+
}, "isUninitialized"> & {
|
|
5290
|
+
isUninitialized: true;
|
|
5291
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5292
|
+
platformKey: string;
|
|
5293
|
+
usergroupId: number;
|
|
5294
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5295
|
+
attempt?: number;
|
|
5296
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5297
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5298
|
+
isUninitialized: false;
|
|
5299
|
+
isLoading: false;
|
|
5300
|
+
isFetching: false;
|
|
5301
|
+
isSuccess: false;
|
|
5302
|
+
isError: false;
|
|
5303
|
+
}, {
|
|
5304
|
+
isLoading: true;
|
|
5305
|
+
isFetching: boolean;
|
|
5306
|
+
data: undefined;
|
|
5307
|
+
} | ({
|
|
5308
|
+
isSuccess: true;
|
|
5309
|
+
isFetching: true;
|
|
5310
|
+
error: undefined;
|
|
5311
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5312
|
+
platformKey: string;
|
|
5313
|
+
usergroupId: number;
|
|
5314
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5315
|
+
attempt?: number;
|
|
5316
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5317
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5318
|
+
isUninitialized: false;
|
|
5319
|
+
isLoading: false;
|
|
5320
|
+
isFetching: false;
|
|
5321
|
+
isSuccess: false;
|
|
5322
|
+
isError: false;
|
|
5323
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5324
|
+
isSuccess: true;
|
|
5325
|
+
isFetching: false;
|
|
5326
|
+
error: undefined;
|
|
5327
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5328
|
+
platformKey: string;
|
|
5329
|
+
usergroupId: number;
|
|
5330
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5331
|
+
attempt?: number;
|
|
5332
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5333
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5334
|
+
isUninitialized: false;
|
|
5335
|
+
isLoading: false;
|
|
5336
|
+
isFetching: false;
|
|
5337
|
+
isSuccess: false;
|
|
5338
|
+
isError: false;
|
|
5339
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5340
|
+
isError: true;
|
|
5341
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5342
|
+
platformKey: string;
|
|
5343
|
+
usergroupId: number;
|
|
5344
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5345
|
+
attempt?: number;
|
|
5346
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>> & {
|
|
5347
|
+
currentData?: import("@iblai/iblai-api").UserGroupPolicy[] | undefined;
|
|
5348
|
+
isUninitialized: false;
|
|
5349
|
+
isLoading: false;
|
|
5350
|
+
isFetching: false;
|
|
5351
|
+
isSuccess: false;
|
|
5352
|
+
isError: false;
|
|
5353
|
+
}, "error">>)>> & {
|
|
5354
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5355
|
+
}) => R) | undefined;
|
|
5356
|
+
}, "skip">) | undefined) => [(arg: {
|
|
5357
|
+
platformKey: string;
|
|
5358
|
+
usergroupId: number;
|
|
5359
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5360
|
+
platformKey: string;
|
|
5361
|
+
usergroupId: number;
|
|
5362
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5363
|
+
attempt?: number;
|
|
5364
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy[], "coreApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5365
|
+
reset: () => void;
|
|
5366
|
+
}, {
|
|
5367
|
+
lastArg: {
|
|
5368
|
+
platformKey: string;
|
|
5369
|
+
usergroupId: number;
|
|
5370
|
+
};
|
|
5371
|
+
}], useCreateRbacTeamsAccessMutation: <R extends Record<string, any> = ({
|
|
5372
|
+
requestId?: undefined;
|
|
5373
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5374
|
+
data?: undefined;
|
|
5375
|
+
error?: undefined;
|
|
5376
|
+
endpointName?: string;
|
|
5377
|
+
startedTimeStamp?: undefined;
|
|
5378
|
+
fulfilledTimeStamp?: undefined;
|
|
5379
|
+
} & {
|
|
5380
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5381
|
+
isUninitialized: true;
|
|
5382
|
+
isLoading: false;
|
|
5383
|
+
isSuccess: false;
|
|
5384
|
+
isError: false;
|
|
5385
|
+
}) | ({
|
|
5386
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5387
|
+
} & Omit<{
|
|
5388
|
+
requestId: string;
|
|
5389
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5390
|
+
error?: unknown;
|
|
5391
|
+
endpointName: string;
|
|
5392
|
+
startedTimeStamp: number;
|
|
5393
|
+
fulfilledTimeStamp?: number;
|
|
5394
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5395
|
+
requestId: string;
|
|
5396
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5397
|
+
error?: unknown;
|
|
5398
|
+
endpointName: string;
|
|
5399
|
+
startedTimeStamp: number;
|
|
5400
|
+
fulfilledTimeStamp?: number;
|
|
5401
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5402
|
+
error: undefined;
|
|
5403
|
+
} & {
|
|
5404
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5405
|
+
isUninitialized: false;
|
|
5406
|
+
isLoading: false;
|
|
5407
|
+
isSuccess: true;
|
|
5408
|
+
isError: false;
|
|
5409
|
+
}) | ({
|
|
5410
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5411
|
+
} & {
|
|
5412
|
+
requestId: string;
|
|
5413
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5414
|
+
error?: unknown;
|
|
5415
|
+
endpointName: string;
|
|
5416
|
+
startedTimeStamp: number;
|
|
5417
|
+
fulfilledTimeStamp?: number;
|
|
5418
|
+
} & {
|
|
5419
|
+
data?: undefined;
|
|
5420
|
+
} & {
|
|
5421
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5422
|
+
isUninitialized: false;
|
|
5423
|
+
isLoading: true;
|
|
5424
|
+
isSuccess: false;
|
|
5425
|
+
isError: false;
|
|
5426
|
+
}) | ({
|
|
5427
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
5428
|
+
} & Omit<{
|
|
5429
|
+
requestId: string;
|
|
5430
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5431
|
+
error?: unknown;
|
|
5432
|
+
endpointName: string;
|
|
5433
|
+
startedTimeStamp: number;
|
|
5434
|
+
fulfilledTimeStamp?: number;
|
|
5435
|
+
}, "error"> & Required<Pick<{
|
|
5436
|
+
requestId: string;
|
|
5437
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5438
|
+
error?: unknown;
|
|
5439
|
+
endpointName: string;
|
|
5440
|
+
startedTimeStamp: number;
|
|
5441
|
+
fulfilledTimeStamp?: number;
|
|
5442
|
+
}, "error">> & {
|
|
5443
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
5444
|
+
isUninitialized: false;
|
|
5445
|
+
isLoading: false;
|
|
5446
|
+
isSuccess: false;
|
|
5447
|
+
isError: true;
|
|
5448
|
+
})>(options?: {
|
|
5449
|
+
selectFromResult?: ((state: ({
|
|
5450
|
+
requestId?: undefined;
|
|
5451
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5452
|
+
data?: undefined;
|
|
5453
|
+
error?: undefined;
|
|
5454
|
+
endpointName?: string;
|
|
5455
|
+
startedTimeStamp?: undefined;
|
|
5456
|
+
fulfilledTimeStamp?: undefined;
|
|
5457
|
+
} & {
|
|
5458
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5459
|
+
isUninitialized: true;
|
|
5460
|
+
isLoading: false;
|
|
5461
|
+
isSuccess: false;
|
|
5462
|
+
isError: false;
|
|
5463
|
+
}) | ({
|
|
5464
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5465
|
+
} & Omit<{
|
|
5466
|
+
requestId: string;
|
|
5467
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5468
|
+
error?: unknown;
|
|
5469
|
+
endpointName: string;
|
|
5470
|
+
startedTimeStamp: number;
|
|
5471
|
+
fulfilledTimeStamp?: number;
|
|
5472
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5473
|
+
requestId: string;
|
|
5474
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5475
|
+
error?: unknown;
|
|
5476
|
+
endpointName: string;
|
|
5477
|
+
startedTimeStamp: number;
|
|
5478
|
+
fulfilledTimeStamp?: number;
|
|
5479
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5480
|
+
error: undefined;
|
|
5481
|
+
} & {
|
|
5482
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5483
|
+
isUninitialized: false;
|
|
5484
|
+
isLoading: false;
|
|
5485
|
+
isSuccess: true;
|
|
5486
|
+
isError: false;
|
|
5487
|
+
}) | ({
|
|
5488
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5489
|
+
} & {
|
|
5490
|
+
requestId: string;
|
|
5491
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5492
|
+
error?: unknown;
|
|
5493
|
+
endpointName: string;
|
|
5494
|
+
startedTimeStamp: number;
|
|
5495
|
+
fulfilledTimeStamp?: number;
|
|
5496
|
+
} & {
|
|
5497
|
+
data?: undefined;
|
|
5498
|
+
} & {
|
|
5499
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5500
|
+
isUninitialized: false;
|
|
5501
|
+
isLoading: true;
|
|
5502
|
+
isSuccess: false;
|
|
5503
|
+
isError: false;
|
|
5504
|
+
}) | ({
|
|
5505
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
5506
|
+
} & Omit<{
|
|
5507
|
+
requestId: string;
|
|
5508
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5509
|
+
error?: unknown;
|
|
5510
|
+
endpointName: string;
|
|
5511
|
+
startedTimeStamp: number;
|
|
5512
|
+
fulfilledTimeStamp?: number;
|
|
5513
|
+
}, "error"> & Required<Pick<{
|
|
5514
|
+
requestId: string;
|
|
5515
|
+
data?: import("@iblai/iblai-api").UserGroupPolicy | undefined;
|
|
5516
|
+
error?: unknown;
|
|
5517
|
+
endpointName: string;
|
|
5518
|
+
startedTimeStamp: number;
|
|
5519
|
+
fulfilledTimeStamp?: number;
|
|
5520
|
+
}, "error">> & {
|
|
5521
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
5522
|
+
isUninitialized: false;
|
|
5523
|
+
isLoading: false;
|
|
5524
|
+
isSuccess: false;
|
|
5525
|
+
isError: true;
|
|
5526
|
+
})) => R) | undefined;
|
|
5527
|
+
fixedCacheKey?: string;
|
|
5528
|
+
} | undefined) => readonly [(arg: {
|
|
5529
|
+
requestBody: import("@iblai/iblai-api").UserGroupPolicy;
|
|
5530
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
5531
|
+
requestBody: import("@iblai/iblai-api").UserGroupPolicy;
|
|
5532
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5533
|
+
attempt?: number;
|
|
5534
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "PlatformInfo" | "PlatformUsers" | "RbacGroups" | "RbacPolicies" | "RbacRoles" | "RbacTeamsAccess", import("@iblai/iblai-api").UserGroupPolicy, "coreApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
5535
|
+
originalArgs?: {
|
|
5536
|
+
requestBody: import("@iblai/iblai-api").UserGroupPolicy;
|
|
5537
|
+
} | undefined;
|
|
5538
|
+
reset: () => void;
|
|
4420
5539
|
}];
|