@iblai/data-layer 1.1.1 → 1.1.2
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 +234 -54
- package/dist/index.esm.js +1165 -248
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1165 -248
- package/dist/index.js.map +1 -1
- package/dist/package.json +3 -2
- package/dist/src/features/core/api-slice.d.ts +110 -0
- package/dist/src/features/credentials/api-slice.d.ts +44 -22
- package/dist/src/features/mentor/api-slice.d.ts +70 -22
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -92,9 +92,9 @@ declare const useGetApiKeysQuery: <R extends Record<string, any> = _reduxjs_tool
|
|
|
92
92
|
isError: false;
|
|
93
93
|
}, "error">>)>> & {
|
|
94
94
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
95
|
-
}>(arg:
|
|
95
|
+
}>(arg: {
|
|
96
96
|
platformKey: string;
|
|
97
|
-
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
97
|
+
} | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
98
98
|
skip?: boolean;
|
|
99
99
|
refetchOnMountOrArgChange?: boolean | number;
|
|
100
100
|
} & {
|
|
@@ -781,13 +781,13 @@ declare const useGetChatHistoryFilterQuery: <R extends Record<string, any> = _re
|
|
|
781
781
|
isError: false;
|
|
782
782
|
}, "error">>)>> & {
|
|
783
783
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
784
|
-
}>(arg: {
|
|
784
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
785
785
|
org: string;
|
|
786
786
|
endDate?: string;
|
|
787
787
|
mentorId?: string;
|
|
788
788
|
monthlyRange?: boolean;
|
|
789
789
|
startDate?: string;
|
|
790
|
-
}
|
|
790
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
791
791
|
skip?: boolean;
|
|
792
792
|
refetchOnMountOrArgChange?: boolean | number;
|
|
793
793
|
} & {
|
|
@@ -1188,7 +1188,7 @@ declare const useGetChatHistoryQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
1188
1188
|
isError: false;
|
|
1189
1189
|
}, "error">>)>> & {
|
|
1190
1190
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
1191
|
-
}>(arg: {
|
|
1191
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
1192
1192
|
org: string;
|
|
1193
1193
|
endDate?: string;
|
|
1194
1194
|
filterUserId?: string;
|
|
@@ -1198,7 +1198,7 @@ declare const useGetChatHistoryQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
1198
1198
|
sentiment?: string;
|
|
1199
1199
|
startDate?: string;
|
|
1200
1200
|
topics?: string;
|
|
1201
|
-
}
|
|
1201
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
1202
1202
|
skip?: boolean;
|
|
1203
1203
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1204
1204
|
} & {
|
|
@@ -1805,10 +1805,10 @@ declare const useGetChatHistoryExportStatusQuery: <R extends Record<string, any>
|
|
|
1805
1805
|
isError: false;
|
|
1806
1806
|
}, "error">>)>> & {
|
|
1807
1807
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
1808
|
-
}>(arg: {
|
|
1808
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
1809
1809
|
key: string;
|
|
1810
1810
|
reportName: string;
|
|
1811
|
-
}
|
|
1811
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
1812
1812
|
skip?: boolean;
|
|
1813
1813
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1814
1814
|
} & {
|
|
@@ -4602,6 +4602,7 @@ declare const mentorApiSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.
|
|
|
4602
4602
|
org: string;
|
|
4603
4603
|
departmentId?: number;
|
|
4604
4604
|
filterBy?: string;
|
|
4605
|
+
isFeatured?: boolean;
|
|
4605
4606
|
metadataKey?: string;
|
|
4606
4607
|
metadataValue?: string;
|
|
4607
4608
|
returnSessionInformation?: boolean;
|
|
@@ -4617,12 +4618,14 @@ declare const mentorApiSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.
|
|
|
4617
4618
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.RecentlyAccessedMentor[], "mentorApiSlice", any>;
|
|
4618
4619
|
getModerationLogs: _reduxjs_toolkit_query.QueryDefinition<{
|
|
4619
4620
|
org: string;
|
|
4620
|
-
|
|
4621
|
+
endTime?: string;
|
|
4622
|
+
mentor?: string;
|
|
4621
4623
|
ordering?: string;
|
|
4622
4624
|
page?: number;
|
|
4623
4625
|
pageSize?: number;
|
|
4624
4626
|
platformKey?: string;
|
|
4625
4627
|
search?: string;
|
|
4628
|
+
startTime?: string;
|
|
4626
4629
|
targetSystem?: "Moderation System" | "Safety System";
|
|
4627
4630
|
username?: string;
|
|
4628
4631
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>;
|
|
@@ -8746,6 +8749,7 @@ declare const useDeleteMentorMutation: <R extends Record<string, any> = ({
|
|
|
8746
8749
|
org: string;
|
|
8747
8750
|
departmentId?: number;
|
|
8748
8751
|
filterBy?: string;
|
|
8752
|
+
isFeatured?: boolean;
|
|
8749
8753
|
metadataKey?: string;
|
|
8750
8754
|
metadataValue?: string;
|
|
8751
8755
|
returnSessionInformation?: boolean;
|
|
@@ -8755,6 +8759,7 @@ declare const useDeleteMentorMutation: <R extends Record<string, any> = ({
|
|
|
8755
8759
|
org: string;
|
|
8756
8760
|
departmentId?: number;
|
|
8757
8761
|
filterBy?: string;
|
|
8762
|
+
isFeatured?: boolean;
|
|
8758
8763
|
metadataKey?: string;
|
|
8759
8764
|
metadataValue?: string;
|
|
8760
8765
|
returnSessionInformation?: boolean;
|
|
@@ -8765,6 +8770,7 @@ declare const useDeleteMentorMutation: <R extends Record<string, any> = ({
|
|
|
8765
8770
|
org: string;
|
|
8766
8771
|
departmentId?: number;
|
|
8767
8772
|
filterBy?: string;
|
|
8773
|
+
isFeatured?: boolean;
|
|
8768
8774
|
metadataKey?: string;
|
|
8769
8775
|
metadataValue?: string;
|
|
8770
8776
|
returnSessionInformation?: boolean;
|
|
@@ -9873,12 +9879,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
9873
9879
|
isUninitialized: true;
|
|
9874
9880
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
9875
9881
|
org: string;
|
|
9876
|
-
|
|
9882
|
+
endTime?: string;
|
|
9883
|
+
mentor?: string;
|
|
9877
9884
|
ordering?: string;
|
|
9878
9885
|
page?: number;
|
|
9879
9886
|
pageSize?: number;
|
|
9880
9887
|
platformKey?: string;
|
|
9881
9888
|
search?: string;
|
|
9889
|
+
startTime?: string;
|
|
9882
9890
|
targetSystem?: "Moderation System" | "Safety System";
|
|
9883
9891
|
username?: string;
|
|
9884
9892
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -9898,12 +9906,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
9898
9906
|
error: undefined;
|
|
9899
9907
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
9900
9908
|
org: string;
|
|
9901
|
-
|
|
9909
|
+
endTime?: string;
|
|
9910
|
+
mentor?: string;
|
|
9902
9911
|
ordering?: string;
|
|
9903
9912
|
page?: number;
|
|
9904
9913
|
pageSize?: number;
|
|
9905
9914
|
platformKey?: string;
|
|
9906
9915
|
search?: string;
|
|
9916
|
+
startTime?: string;
|
|
9907
9917
|
targetSystem?: "Moderation System" | "Safety System";
|
|
9908
9918
|
username?: string;
|
|
9909
9919
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -9919,12 +9929,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
9919
9929
|
error: undefined;
|
|
9920
9930
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
9921
9931
|
org: string;
|
|
9922
|
-
|
|
9932
|
+
endTime?: string;
|
|
9933
|
+
mentor?: string;
|
|
9923
9934
|
ordering?: string;
|
|
9924
9935
|
page?: number;
|
|
9925
9936
|
pageSize?: number;
|
|
9926
9937
|
platformKey?: string;
|
|
9927
9938
|
search?: string;
|
|
9939
|
+
startTime?: string;
|
|
9928
9940
|
targetSystem?: "Moderation System" | "Safety System";
|
|
9929
9941
|
username?: string;
|
|
9930
9942
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -9938,12 +9950,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
9938
9950
|
isError: true;
|
|
9939
9951
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
9940
9952
|
org: string;
|
|
9941
|
-
|
|
9953
|
+
endTime?: string;
|
|
9954
|
+
mentor?: string;
|
|
9942
9955
|
ordering?: string;
|
|
9943
9956
|
page?: number;
|
|
9944
9957
|
pageSize?: number;
|
|
9945
9958
|
platformKey?: string;
|
|
9946
9959
|
search?: string;
|
|
9960
|
+
startTime?: string;
|
|
9947
9961
|
targetSystem?: "Moderation System" | "Safety System";
|
|
9948
9962
|
username?: string;
|
|
9949
9963
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -9957,12 +9971,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
9957
9971
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
9958
9972
|
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
9959
9973
|
org: string;
|
|
9960
|
-
|
|
9974
|
+
endTime?: string;
|
|
9975
|
+
mentor?: string;
|
|
9961
9976
|
ordering?: string;
|
|
9962
9977
|
page?: number;
|
|
9963
9978
|
pageSize?: number;
|
|
9964
9979
|
platformKey?: string;
|
|
9965
9980
|
search?: string;
|
|
9981
|
+
startTime?: string;
|
|
9966
9982
|
targetSystem?: "Moderation System" | "Safety System";
|
|
9967
9983
|
username?: string;
|
|
9968
9984
|
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
@@ -9990,12 +10006,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
9990
10006
|
isUninitialized: true;
|
|
9991
10007
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
9992
10008
|
org: string;
|
|
9993
|
-
|
|
10009
|
+
endTime?: string;
|
|
10010
|
+
mentor?: string;
|
|
9994
10011
|
ordering?: string;
|
|
9995
10012
|
page?: number;
|
|
9996
10013
|
pageSize?: number;
|
|
9997
10014
|
platformKey?: string;
|
|
9998
10015
|
search?: string;
|
|
10016
|
+
startTime?: string;
|
|
9999
10017
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10000
10018
|
username?: string;
|
|
10001
10019
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10015,12 +10033,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
10015
10033
|
error: undefined;
|
|
10016
10034
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10017
10035
|
org: string;
|
|
10018
|
-
|
|
10036
|
+
endTime?: string;
|
|
10037
|
+
mentor?: string;
|
|
10019
10038
|
ordering?: string;
|
|
10020
10039
|
page?: number;
|
|
10021
10040
|
pageSize?: number;
|
|
10022
10041
|
platformKey?: string;
|
|
10023
10042
|
search?: string;
|
|
10043
|
+
startTime?: string;
|
|
10024
10044
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10025
10045
|
username?: string;
|
|
10026
10046
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10036,12 +10056,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
10036
10056
|
error: undefined;
|
|
10037
10057
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10038
10058
|
org: string;
|
|
10039
|
-
|
|
10059
|
+
endTime?: string;
|
|
10060
|
+
mentor?: string;
|
|
10040
10061
|
ordering?: string;
|
|
10041
10062
|
page?: number;
|
|
10042
10063
|
pageSize?: number;
|
|
10043
10064
|
platformKey?: string;
|
|
10044
10065
|
search?: string;
|
|
10066
|
+
startTime?: string;
|
|
10045
10067
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10046
10068
|
username?: string;
|
|
10047
10069
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10055,12 +10077,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
10055
10077
|
isError: true;
|
|
10056
10078
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10057
10079
|
org: string;
|
|
10058
|
-
|
|
10080
|
+
endTime?: string;
|
|
10081
|
+
mentor?: string;
|
|
10059
10082
|
ordering?: string;
|
|
10060
10083
|
page?: number;
|
|
10061
10084
|
pageSize?: number;
|
|
10062
10085
|
platformKey?: string;
|
|
10063
10086
|
search?: string;
|
|
10087
|
+
startTime?: string;
|
|
10064
10088
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10065
10089
|
username?: string;
|
|
10066
10090
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10076,12 +10100,14 @@ declare const useGetModerationLogsQuery: <R extends Record<string, any> = _redux
|
|
|
10076
10100
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
10077
10101
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10078
10102
|
org: string;
|
|
10079
|
-
|
|
10103
|
+
endTime?: string;
|
|
10104
|
+
mentor?: string;
|
|
10080
10105
|
ordering?: string;
|
|
10081
10106
|
page?: number;
|
|
10082
10107
|
pageSize?: number;
|
|
10083
10108
|
platformKey?: string;
|
|
10084
10109
|
search?: string;
|
|
10110
|
+
startTime?: string;
|
|
10085
10111
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10086
10112
|
username?: string;
|
|
10087
10113
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>>;
|
|
@@ -10106,12 +10132,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10106
10132
|
isUninitialized: true;
|
|
10107
10133
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10108
10134
|
org: string;
|
|
10109
|
-
|
|
10135
|
+
endTime?: string;
|
|
10136
|
+
mentor?: string;
|
|
10110
10137
|
ordering?: string;
|
|
10111
10138
|
page?: number;
|
|
10112
10139
|
pageSize?: number;
|
|
10113
10140
|
platformKey?: string;
|
|
10114
10141
|
search?: string;
|
|
10142
|
+
startTime?: string;
|
|
10115
10143
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10116
10144
|
username?: string;
|
|
10117
10145
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10131,12 +10159,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10131
10159
|
error: undefined;
|
|
10132
10160
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10133
10161
|
org: string;
|
|
10134
|
-
|
|
10162
|
+
endTime?: string;
|
|
10163
|
+
mentor?: string;
|
|
10135
10164
|
ordering?: string;
|
|
10136
10165
|
page?: number;
|
|
10137
10166
|
pageSize?: number;
|
|
10138
10167
|
platformKey?: string;
|
|
10139
10168
|
search?: string;
|
|
10169
|
+
startTime?: string;
|
|
10140
10170
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10141
10171
|
username?: string;
|
|
10142
10172
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10152,12 +10182,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10152
10182
|
error: undefined;
|
|
10153
10183
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10154
10184
|
org: string;
|
|
10155
|
-
|
|
10185
|
+
endTime?: string;
|
|
10186
|
+
mentor?: string;
|
|
10156
10187
|
ordering?: string;
|
|
10157
10188
|
page?: number;
|
|
10158
10189
|
pageSize?: number;
|
|
10159
10190
|
platformKey?: string;
|
|
10160
10191
|
search?: string;
|
|
10192
|
+
startTime?: string;
|
|
10161
10193
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10162
10194
|
username?: string;
|
|
10163
10195
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10171,12 +10203,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10171
10203
|
isError: true;
|
|
10172
10204
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10173
10205
|
org: string;
|
|
10174
|
-
|
|
10206
|
+
endTime?: string;
|
|
10207
|
+
mentor?: string;
|
|
10175
10208
|
ordering?: string;
|
|
10176
10209
|
page?: number;
|
|
10177
10210
|
pageSize?: number;
|
|
10178
10211
|
platformKey?: string;
|
|
10179
10212
|
search?: string;
|
|
10213
|
+
startTime?: string;
|
|
10180
10214
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10181
10215
|
username?: string;
|
|
10182
10216
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10210,12 +10244,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10210
10244
|
isUninitialized: true;
|
|
10211
10245
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10212
10246
|
org: string;
|
|
10213
|
-
|
|
10247
|
+
endTime?: string;
|
|
10248
|
+
mentor?: string;
|
|
10214
10249
|
ordering?: string;
|
|
10215
10250
|
page?: number;
|
|
10216
10251
|
pageSize?: number;
|
|
10217
10252
|
platformKey?: string;
|
|
10218
10253
|
search?: string;
|
|
10254
|
+
startTime?: string;
|
|
10219
10255
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10220
10256
|
username?: string;
|
|
10221
10257
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10235,12 +10271,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10235
10271
|
error: undefined;
|
|
10236
10272
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10237
10273
|
org: string;
|
|
10238
|
-
|
|
10274
|
+
endTime?: string;
|
|
10275
|
+
mentor?: string;
|
|
10239
10276
|
ordering?: string;
|
|
10240
10277
|
page?: number;
|
|
10241
10278
|
pageSize?: number;
|
|
10242
10279
|
platformKey?: string;
|
|
10243
10280
|
search?: string;
|
|
10281
|
+
startTime?: string;
|
|
10244
10282
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10245
10283
|
username?: string;
|
|
10246
10284
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10256,12 +10294,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10256
10294
|
error: undefined;
|
|
10257
10295
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10258
10296
|
org: string;
|
|
10259
|
-
|
|
10297
|
+
endTime?: string;
|
|
10298
|
+
mentor?: string;
|
|
10260
10299
|
ordering?: string;
|
|
10261
10300
|
page?: number;
|
|
10262
10301
|
pageSize?: number;
|
|
10263
10302
|
platformKey?: string;
|
|
10264
10303
|
search?: string;
|
|
10304
|
+
startTime?: string;
|
|
10265
10305
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10266
10306
|
username?: string;
|
|
10267
10307
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10275,12 +10315,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10275
10315
|
isError: true;
|
|
10276
10316
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10277
10317
|
org: string;
|
|
10278
|
-
|
|
10318
|
+
endTime?: string;
|
|
10319
|
+
mentor?: string;
|
|
10279
10320
|
ordering?: string;
|
|
10280
10321
|
page?: number;
|
|
10281
10322
|
pageSize?: number;
|
|
10282
10323
|
platformKey?: string;
|
|
10283
10324
|
search?: string;
|
|
10325
|
+
startTime?: string;
|
|
10284
10326
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10285
10327
|
username?: string;
|
|
10286
10328
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
@@ -10295,22 +10337,26 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10295
10337
|
}) => R) | undefined;
|
|
10296
10338
|
}, "skip">) | undefined) => [(arg: {
|
|
10297
10339
|
org: string;
|
|
10298
|
-
|
|
10340
|
+
endTime?: string;
|
|
10341
|
+
mentor?: string;
|
|
10299
10342
|
ordering?: string;
|
|
10300
10343
|
page?: number;
|
|
10301
10344
|
pageSize?: number;
|
|
10302
10345
|
platformKey?: string;
|
|
10303
10346
|
search?: string;
|
|
10347
|
+
startTime?: string;
|
|
10304
10348
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10305
10349
|
username?: string;
|
|
10306
10350
|
}, preferCacheValue?: boolean) => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
10307
10351
|
org: string;
|
|
10308
|
-
|
|
10352
|
+
endTime?: string;
|
|
10353
|
+
mentor?: string;
|
|
10309
10354
|
ordering?: string;
|
|
10310
10355
|
page?: number;
|
|
10311
10356
|
pageSize?: number;
|
|
10312
10357
|
platformKey?: string;
|
|
10313
10358
|
search?: string;
|
|
10359
|
+
startTime?: string;
|
|
10314
10360
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10315
10361
|
username?: string;
|
|
10316
10362
|
}, _reduxjs_toolkit_query.BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", _iblai_iblai_api.PaginatedModerationLogList, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
@@ -10318,12 +10364,14 @@ declare const useLazyGetModerationLogsQuery: <R extends Record<string, any> = _r
|
|
|
10318
10364
|
}, {
|
|
10319
10365
|
lastArg: {
|
|
10320
10366
|
org: string;
|
|
10321
|
-
|
|
10367
|
+
endTime?: string;
|
|
10368
|
+
mentor?: string;
|
|
10322
10369
|
ordering?: string;
|
|
10323
10370
|
page?: number;
|
|
10324
10371
|
pageSize?: number;
|
|
10325
10372
|
platformKey?: string;
|
|
10326
10373
|
search?: string;
|
|
10374
|
+
startTime?: string;
|
|
10327
10375
|
targetSystem?: "Moderation System" | "Safety System";
|
|
10328
10376
|
username?: string;
|
|
10329
10377
|
};
|
|
@@ -19471,11 +19519,14 @@ declare const coreApiSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.Ba
|
|
|
19471
19519
|
requestBody: _iblai_iblai_api.SetStudentMentorCreationPermission;
|
|
19472
19520
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.StudentMentorCreationPermissionResponse, "coreApiSlice", any>;
|
|
19473
19521
|
getRbacGroups: _reduxjs_toolkit_query.QueryDefinition<{
|
|
19522
|
+
email?: string;
|
|
19474
19523
|
includeUsers?: boolean;
|
|
19524
|
+
name?: string;
|
|
19475
19525
|
owner?: string;
|
|
19476
19526
|
page?: number;
|
|
19477
19527
|
pageSize?: number;
|
|
19478
19528
|
platformKey?: string;
|
|
19529
|
+
username?: string;
|
|
19479
19530
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>;
|
|
19480
19531
|
createRbacGroup: _reduxjs_toolkit_query.MutationDefinition<{
|
|
19481
19532
|
requestBody: _iblai_iblai_api.RbacGroup;
|
|
@@ -19492,10 +19543,16 @@ declare const coreApiSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.Ba
|
|
|
19492
19543
|
id: number;
|
|
19493
19544
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", CustomRbacGroupDetailsResponse, "coreApiSlice", any>;
|
|
19494
19545
|
getRbacPolicies: _reduxjs_toolkit_query.QueryDefinition<{
|
|
19546
|
+
email?: string;
|
|
19547
|
+
group?: string;
|
|
19548
|
+
includeGroups?: boolean;
|
|
19549
|
+
includeUsers?: boolean;
|
|
19550
|
+
name?: string;
|
|
19495
19551
|
page?: number;
|
|
19496
19552
|
pageSize?: number;
|
|
19497
19553
|
platformKey?: string;
|
|
19498
19554
|
roleId?: number;
|
|
19555
|
+
username?: string;
|
|
19499
19556
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>;
|
|
19500
19557
|
createRbacPolicy: _reduxjs_toolkit_query.MutationDefinition<{
|
|
19501
19558
|
requestBody: _iblai_iblai_api.RbacPolicy;
|
|
@@ -19513,6 +19570,7 @@ declare const coreApiSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.Ba
|
|
|
19513
19570
|
id: number;
|
|
19514
19571
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", CustomRbacPolicyDetailsResponse, "coreApiSlice", any>;
|
|
19515
19572
|
getRbacRoles: _reduxjs_toolkit_query.QueryDefinition<{
|
|
19573
|
+
name?: string;
|
|
19516
19574
|
page?: number;
|
|
19517
19575
|
pageSize?: number;
|
|
19518
19576
|
platformKey?: string;
|
|
@@ -20861,11 +20919,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20861
20919
|
}, "isUninitialized"> & {
|
|
20862
20920
|
isUninitialized: true;
|
|
20863
20921
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
20922
|
+
email?: string;
|
|
20864
20923
|
includeUsers?: boolean;
|
|
20924
|
+
name?: string;
|
|
20865
20925
|
owner?: string;
|
|
20866
20926
|
page?: number;
|
|
20867
20927
|
pageSize?: number;
|
|
20868
20928
|
platformKey?: string;
|
|
20929
|
+
username?: string;
|
|
20869
20930
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
20870
20931
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
20871
20932
|
isUninitialized: false;
|
|
@@ -20882,11 +20943,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20882
20943
|
isFetching: true;
|
|
20883
20944
|
error: undefined;
|
|
20884
20945
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
20946
|
+
email?: string;
|
|
20885
20947
|
includeUsers?: boolean;
|
|
20948
|
+
name?: string;
|
|
20886
20949
|
owner?: string;
|
|
20887
20950
|
page?: number;
|
|
20888
20951
|
pageSize?: number;
|
|
20889
20952
|
platformKey?: string;
|
|
20953
|
+
username?: string;
|
|
20890
20954
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
20891
20955
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
20892
20956
|
isUninitialized: false;
|
|
@@ -20899,11 +20963,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20899
20963
|
isFetching: false;
|
|
20900
20964
|
error: undefined;
|
|
20901
20965
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
20966
|
+
email?: string;
|
|
20902
20967
|
includeUsers?: boolean;
|
|
20968
|
+
name?: string;
|
|
20903
20969
|
owner?: string;
|
|
20904
20970
|
page?: number;
|
|
20905
20971
|
pageSize?: number;
|
|
20906
20972
|
platformKey?: string;
|
|
20973
|
+
username?: string;
|
|
20907
20974
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
20908
20975
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
20909
20976
|
isUninitialized: false;
|
|
@@ -20914,11 +20981,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20914
20981
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
20915
20982
|
isError: true;
|
|
20916
20983
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
20984
|
+
email?: string;
|
|
20917
20985
|
includeUsers?: boolean;
|
|
20986
|
+
name?: string;
|
|
20918
20987
|
owner?: string;
|
|
20919
20988
|
page?: number;
|
|
20920
20989
|
pageSize?: number;
|
|
20921
20990
|
platformKey?: string;
|
|
20991
|
+
username?: string;
|
|
20922
20992
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
20923
20993
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
20924
20994
|
isUninitialized: false;
|
|
@@ -20929,11 +20999,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20929
20999
|
}, "error">>)>> & {
|
|
20930
21000
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
20931
21001
|
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
21002
|
+
email?: string;
|
|
20932
21003
|
includeUsers?: boolean;
|
|
21004
|
+
name?: string;
|
|
20933
21005
|
owner?: string;
|
|
20934
21006
|
page?: number;
|
|
20935
21007
|
pageSize?: number;
|
|
20936
21008
|
platformKey?: string;
|
|
21009
|
+
username?: string;
|
|
20937
21010
|
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
20938
21011
|
skip?: boolean;
|
|
20939
21012
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -20958,11 +21031,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20958
21031
|
}, "isUninitialized"> & {
|
|
20959
21032
|
isUninitialized: true;
|
|
20960
21033
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21034
|
+
email?: string;
|
|
20961
21035
|
includeUsers?: boolean;
|
|
21036
|
+
name?: string;
|
|
20962
21037
|
owner?: string;
|
|
20963
21038
|
page?: number;
|
|
20964
21039
|
pageSize?: number;
|
|
20965
21040
|
platformKey?: string;
|
|
21041
|
+
username?: string;
|
|
20966
21042
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
20967
21043
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
20968
21044
|
isUninitialized: false;
|
|
@@ -20979,11 +21055,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20979
21055
|
isFetching: true;
|
|
20980
21056
|
error: undefined;
|
|
20981
21057
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21058
|
+
email?: string;
|
|
20982
21059
|
includeUsers?: boolean;
|
|
21060
|
+
name?: string;
|
|
20983
21061
|
owner?: string;
|
|
20984
21062
|
page?: number;
|
|
20985
21063
|
pageSize?: number;
|
|
20986
21064
|
platformKey?: string;
|
|
21065
|
+
username?: string;
|
|
20987
21066
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
20988
21067
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
20989
21068
|
isUninitialized: false;
|
|
@@ -20996,11 +21075,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
20996
21075
|
isFetching: false;
|
|
20997
21076
|
error: undefined;
|
|
20998
21077
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21078
|
+
email?: string;
|
|
20999
21079
|
includeUsers?: boolean;
|
|
21080
|
+
name?: string;
|
|
21000
21081
|
owner?: string;
|
|
21001
21082
|
page?: number;
|
|
21002
21083
|
pageSize?: number;
|
|
21003
21084
|
platformKey?: string;
|
|
21085
|
+
username?: string;
|
|
21004
21086
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
21005
21087
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
21006
21088
|
isUninitialized: false;
|
|
@@ -21011,11 +21093,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
21011
21093
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
21012
21094
|
isError: true;
|
|
21013
21095
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21096
|
+
email?: string;
|
|
21014
21097
|
includeUsers?: boolean;
|
|
21098
|
+
name?: string;
|
|
21015
21099
|
owner?: string;
|
|
21016
21100
|
page?: number;
|
|
21017
21101
|
pageSize?: number;
|
|
21018
21102
|
platformKey?: string;
|
|
21103
|
+
username?: string;
|
|
21019
21104
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>> & {
|
|
21020
21105
|
currentData?: _iblai_iblai_api.PaginatedRbacGroupList | undefined;
|
|
21021
21106
|
isUninitialized: false;
|
|
@@ -21028,11 +21113,14 @@ declare const useGetRbacGroupsQuery: <R extends Record<string, any> = _reduxjs_t
|
|
|
21028
21113
|
}) => R) | undefined;
|
|
21029
21114
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
21030
21115
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21116
|
+
email?: string;
|
|
21031
21117
|
includeUsers?: boolean;
|
|
21118
|
+
name?: string;
|
|
21032
21119
|
owner?: string;
|
|
21033
21120
|
page?: number;
|
|
21034
21121
|
pageSize?: number;
|
|
21035
21122
|
platformKey?: string;
|
|
21123
|
+
username?: string;
|
|
21036
21124
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacGroupList, "coreApiSlice", any>>;
|
|
21037
21125
|
};
|
|
21038
21126
|
declare const useCreateRbacGroupMutation: <R extends Record<string, any> = ({
|
|
@@ -21714,10 +21802,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21714
21802
|
}, "isUninitialized"> & {
|
|
21715
21803
|
isUninitialized: true;
|
|
21716
21804
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21805
|
+
email?: string;
|
|
21806
|
+
group?: string;
|
|
21807
|
+
includeGroups?: boolean;
|
|
21808
|
+
includeUsers?: boolean;
|
|
21809
|
+
name?: string;
|
|
21717
21810
|
page?: number;
|
|
21718
21811
|
pageSize?: number;
|
|
21719
21812
|
platformKey?: string;
|
|
21720
21813
|
roleId?: number;
|
|
21814
|
+
username?: string;
|
|
21721
21815
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21722
21816
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21723
21817
|
isUninitialized: false;
|
|
@@ -21734,10 +21828,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21734
21828
|
isFetching: true;
|
|
21735
21829
|
error: undefined;
|
|
21736
21830
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21831
|
+
email?: string;
|
|
21832
|
+
group?: string;
|
|
21833
|
+
includeGroups?: boolean;
|
|
21834
|
+
includeUsers?: boolean;
|
|
21835
|
+
name?: string;
|
|
21737
21836
|
page?: number;
|
|
21738
21837
|
pageSize?: number;
|
|
21739
21838
|
platformKey?: string;
|
|
21740
21839
|
roleId?: number;
|
|
21840
|
+
username?: string;
|
|
21741
21841
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21742
21842
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21743
21843
|
isUninitialized: false;
|
|
@@ -21750,10 +21850,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21750
21850
|
isFetching: false;
|
|
21751
21851
|
error: undefined;
|
|
21752
21852
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21853
|
+
email?: string;
|
|
21854
|
+
group?: string;
|
|
21855
|
+
includeGroups?: boolean;
|
|
21856
|
+
includeUsers?: boolean;
|
|
21857
|
+
name?: string;
|
|
21753
21858
|
page?: number;
|
|
21754
21859
|
pageSize?: number;
|
|
21755
21860
|
platformKey?: string;
|
|
21756
21861
|
roleId?: number;
|
|
21862
|
+
username?: string;
|
|
21757
21863
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21758
21864
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21759
21865
|
isUninitialized: false;
|
|
@@ -21764,10 +21870,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21764
21870
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
21765
21871
|
isError: true;
|
|
21766
21872
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21873
|
+
email?: string;
|
|
21874
|
+
group?: string;
|
|
21875
|
+
includeGroups?: boolean;
|
|
21876
|
+
includeUsers?: boolean;
|
|
21877
|
+
name?: string;
|
|
21767
21878
|
page?: number;
|
|
21768
21879
|
pageSize?: number;
|
|
21769
21880
|
platformKey?: string;
|
|
21770
21881
|
roleId?: number;
|
|
21882
|
+
username?: string;
|
|
21771
21883
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21772
21884
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21773
21885
|
isUninitialized: false;
|
|
@@ -21778,10 +21890,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21778
21890
|
}, "error">>)>> & {
|
|
21779
21891
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
21780
21892
|
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
21893
|
+
email?: string;
|
|
21894
|
+
group?: string;
|
|
21895
|
+
includeGroups?: boolean;
|
|
21896
|
+
includeUsers?: boolean;
|
|
21897
|
+
name?: string;
|
|
21781
21898
|
page?: number;
|
|
21782
21899
|
pageSize?: number;
|
|
21783
21900
|
platformKey?: string;
|
|
21784
21901
|
roleId?: number;
|
|
21902
|
+
username?: string;
|
|
21785
21903
|
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
21786
21904
|
skip?: boolean;
|
|
21787
21905
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -21806,10 +21924,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21806
21924
|
}, "isUninitialized"> & {
|
|
21807
21925
|
isUninitialized: true;
|
|
21808
21926
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21927
|
+
email?: string;
|
|
21928
|
+
group?: string;
|
|
21929
|
+
includeGroups?: boolean;
|
|
21930
|
+
includeUsers?: boolean;
|
|
21931
|
+
name?: string;
|
|
21809
21932
|
page?: number;
|
|
21810
21933
|
pageSize?: number;
|
|
21811
21934
|
platformKey?: string;
|
|
21812
21935
|
roleId?: number;
|
|
21936
|
+
username?: string;
|
|
21813
21937
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21814
21938
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21815
21939
|
isUninitialized: false;
|
|
@@ -21826,10 +21950,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21826
21950
|
isFetching: true;
|
|
21827
21951
|
error: undefined;
|
|
21828
21952
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21953
|
+
email?: string;
|
|
21954
|
+
group?: string;
|
|
21955
|
+
includeGroups?: boolean;
|
|
21956
|
+
includeUsers?: boolean;
|
|
21957
|
+
name?: string;
|
|
21829
21958
|
page?: number;
|
|
21830
21959
|
pageSize?: number;
|
|
21831
21960
|
platformKey?: string;
|
|
21832
21961
|
roleId?: number;
|
|
21962
|
+
username?: string;
|
|
21833
21963
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21834
21964
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21835
21965
|
isUninitialized: false;
|
|
@@ -21842,10 +21972,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21842
21972
|
isFetching: false;
|
|
21843
21973
|
error: undefined;
|
|
21844
21974
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21975
|
+
email?: string;
|
|
21976
|
+
group?: string;
|
|
21977
|
+
includeGroups?: boolean;
|
|
21978
|
+
includeUsers?: boolean;
|
|
21979
|
+
name?: string;
|
|
21845
21980
|
page?: number;
|
|
21846
21981
|
pageSize?: number;
|
|
21847
21982
|
platformKey?: string;
|
|
21848
21983
|
roleId?: number;
|
|
21984
|
+
username?: string;
|
|
21849
21985
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21850
21986
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21851
21987
|
isUninitialized: false;
|
|
@@ -21856,10 +21992,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21856
21992
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
21857
21993
|
isError: true;
|
|
21858
21994
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
21995
|
+
email?: string;
|
|
21996
|
+
group?: string;
|
|
21997
|
+
includeGroups?: boolean;
|
|
21998
|
+
includeUsers?: boolean;
|
|
21999
|
+
name?: string;
|
|
21859
22000
|
page?: number;
|
|
21860
22001
|
pageSize?: number;
|
|
21861
22002
|
platformKey?: string;
|
|
21862
22003
|
roleId?: number;
|
|
22004
|
+
username?: string;
|
|
21863
22005
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>> & {
|
|
21864
22006
|
currentData?: _iblai_iblai_api.PaginatedRbacPolicyList | undefined;
|
|
21865
22007
|
isUninitialized: false;
|
|
@@ -21872,10 +22014,16 @@ declare const useGetRbacPoliciesQuery: <R extends Record<string, any> = _reduxjs
|
|
|
21872
22014
|
}) => R) | undefined;
|
|
21873
22015
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
21874
22016
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22017
|
+
email?: string;
|
|
22018
|
+
group?: string;
|
|
22019
|
+
includeGroups?: boolean;
|
|
22020
|
+
includeUsers?: boolean;
|
|
22021
|
+
name?: string;
|
|
21875
22022
|
page?: number;
|
|
21876
22023
|
pageSize?: number;
|
|
21877
22024
|
platformKey?: string;
|
|
21878
22025
|
roleId?: number;
|
|
22026
|
+
username?: string;
|
|
21879
22027
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, "PlatformUsers" | "PlatformInfo" | "RbacGroups" | "RbacPolicies" | "RbacRoles", _iblai_iblai_api.PaginatedRbacPolicyList, "coreApiSlice", any>>;
|
|
21880
22028
|
};
|
|
21881
22029
|
declare const useCreateRbacPolicyMutation: <R extends Record<string, any> = ({
|
|
@@ -22567,6 +22715,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22567
22715
|
}, "isUninitialized"> & {
|
|
22568
22716
|
isUninitialized: true;
|
|
22569
22717
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22718
|
+
name?: string;
|
|
22570
22719
|
page?: number;
|
|
22571
22720
|
pageSize?: number;
|
|
22572
22721
|
platformKey?: string;
|
|
@@ -22586,6 +22735,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22586
22735
|
isFetching: true;
|
|
22587
22736
|
error: undefined;
|
|
22588
22737
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22738
|
+
name?: string;
|
|
22589
22739
|
page?: number;
|
|
22590
22740
|
pageSize?: number;
|
|
22591
22741
|
platformKey?: string;
|
|
@@ -22601,6 +22751,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22601
22751
|
isFetching: false;
|
|
22602
22752
|
error: undefined;
|
|
22603
22753
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22754
|
+
name?: string;
|
|
22604
22755
|
page?: number;
|
|
22605
22756
|
pageSize?: number;
|
|
22606
22757
|
platformKey?: string;
|
|
@@ -22614,6 +22765,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22614
22765
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
22615
22766
|
isError: true;
|
|
22616
22767
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22768
|
+
name?: string;
|
|
22617
22769
|
page?: number;
|
|
22618
22770
|
pageSize?: number;
|
|
22619
22771
|
platformKey?: string;
|
|
@@ -22627,6 +22779,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22627
22779
|
}, "error">>)>> & {
|
|
22628
22780
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
22629
22781
|
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
22782
|
+
name?: string;
|
|
22630
22783
|
page?: number;
|
|
22631
22784
|
pageSize?: number;
|
|
22632
22785
|
platformKey?: string;
|
|
@@ -22654,6 +22807,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22654
22807
|
}, "isUninitialized"> & {
|
|
22655
22808
|
isUninitialized: true;
|
|
22656
22809
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22810
|
+
name?: string;
|
|
22657
22811
|
page?: number;
|
|
22658
22812
|
pageSize?: number;
|
|
22659
22813
|
platformKey?: string;
|
|
@@ -22673,6 +22827,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22673
22827
|
isFetching: true;
|
|
22674
22828
|
error: undefined;
|
|
22675
22829
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22830
|
+
name?: string;
|
|
22676
22831
|
page?: number;
|
|
22677
22832
|
pageSize?: number;
|
|
22678
22833
|
platformKey?: string;
|
|
@@ -22688,6 +22843,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22688
22843
|
isFetching: false;
|
|
22689
22844
|
error: undefined;
|
|
22690
22845
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22846
|
+
name?: string;
|
|
22691
22847
|
page?: number;
|
|
22692
22848
|
pageSize?: number;
|
|
22693
22849
|
platformKey?: string;
|
|
@@ -22701,6 +22857,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22701
22857
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
22702
22858
|
isError: true;
|
|
22703
22859
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22860
|
+
name?: string;
|
|
22704
22861
|
page?: number;
|
|
22705
22862
|
pageSize?: number;
|
|
22706
22863
|
platformKey?: string;
|
|
@@ -22716,6 +22873,7 @@ declare const useGetRbacRolesQuery: <R extends Record<string, any> = _reduxjs_to
|
|
|
22716
22873
|
}) => R) | undefined;
|
|
22717
22874
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
22718
22875
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
22876
|
+
name?: string;
|
|
22719
22877
|
page?: number;
|
|
22720
22878
|
pageSize?: number;
|
|
22721
22879
|
platformKey?: string;
|
|
@@ -25193,7 +25351,8 @@ declare const credentialsApiSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_q
|
|
|
25193
25351
|
name?: string;
|
|
25194
25352
|
}, _reduxjs_toolkit_query.BaseQueryFn<void, typeof _reduxjs_toolkit_query._NEVER, unknown, {} & _reduxjs_toolkit_query.RetryOptions, {}>, never, _iblai_iblai_api.LLMCredentialResponse, "credentialsApiSlice", any>;
|
|
25195
25353
|
getUserCredentials: _reduxjs_toolkit_query.QueryDefinition<{
|
|
25196
|
-
|
|
25354
|
+
platformKey: string;
|
|
25355
|
+
username: string;
|
|
25197
25356
|
course?: string;
|
|
25198
25357
|
excludeMainTenantAssertions?: boolean;
|
|
25199
25358
|
includeExpired?: boolean;
|
|
@@ -25598,7 +25757,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25598
25757
|
}, "isUninitialized"> & {
|
|
25599
25758
|
isUninitialized: true;
|
|
25600
25759
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25601
|
-
|
|
25760
|
+
platformKey: string;
|
|
25761
|
+
username: string;
|
|
25602
25762
|
course?: string;
|
|
25603
25763
|
excludeMainTenantAssertions?: boolean;
|
|
25604
25764
|
includeExpired?: boolean;
|
|
@@ -25621,7 +25781,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25621
25781
|
isFetching: true;
|
|
25622
25782
|
error: undefined;
|
|
25623
25783
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25624
|
-
|
|
25784
|
+
platformKey: string;
|
|
25785
|
+
username: string;
|
|
25625
25786
|
course?: string;
|
|
25626
25787
|
excludeMainTenantAssertions?: boolean;
|
|
25627
25788
|
includeExpired?: boolean;
|
|
@@ -25640,7 +25801,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25640
25801
|
isFetching: false;
|
|
25641
25802
|
error: undefined;
|
|
25642
25803
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25643
|
-
|
|
25804
|
+
platformKey: string;
|
|
25805
|
+
username: string;
|
|
25644
25806
|
course?: string;
|
|
25645
25807
|
excludeMainTenantAssertions?: boolean;
|
|
25646
25808
|
includeExpired?: boolean;
|
|
@@ -25657,7 +25819,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25657
25819
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
25658
25820
|
isError: true;
|
|
25659
25821
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25660
|
-
|
|
25822
|
+
platformKey: string;
|
|
25823
|
+
username: string;
|
|
25661
25824
|
course?: string;
|
|
25662
25825
|
excludeMainTenantAssertions?: boolean;
|
|
25663
25826
|
includeExpired?: boolean;
|
|
@@ -25674,7 +25837,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25674
25837
|
}, "error">>)>> & {
|
|
25675
25838
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
25676
25839
|
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
25677
|
-
|
|
25840
|
+
platformKey: string;
|
|
25841
|
+
username: string;
|
|
25678
25842
|
course?: string;
|
|
25679
25843
|
excludeMainTenantAssertions?: boolean;
|
|
25680
25844
|
includeExpired?: boolean;
|
|
@@ -25705,7 +25869,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25705
25869
|
}, "isUninitialized"> & {
|
|
25706
25870
|
isUninitialized: true;
|
|
25707
25871
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25708
|
-
|
|
25872
|
+
platformKey: string;
|
|
25873
|
+
username: string;
|
|
25709
25874
|
course?: string;
|
|
25710
25875
|
excludeMainTenantAssertions?: boolean;
|
|
25711
25876
|
includeExpired?: boolean;
|
|
@@ -25728,7 +25893,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25728
25893
|
isFetching: true;
|
|
25729
25894
|
error: undefined;
|
|
25730
25895
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25731
|
-
|
|
25896
|
+
platformKey: string;
|
|
25897
|
+
username: string;
|
|
25732
25898
|
course?: string;
|
|
25733
25899
|
excludeMainTenantAssertions?: boolean;
|
|
25734
25900
|
includeExpired?: boolean;
|
|
@@ -25747,7 +25913,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25747
25913
|
isFetching: false;
|
|
25748
25914
|
error: undefined;
|
|
25749
25915
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25750
|
-
|
|
25916
|
+
platformKey: string;
|
|
25917
|
+
username: string;
|
|
25751
25918
|
course?: string;
|
|
25752
25919
|
excludeMainTenantAssertions?: boolean;
|
|
25753
25920
|
includeExpired?: boolean;
|
|
@@ -25764,7 +25931,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25764
25931
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
25765
25932
|
isError: true;
|
|
25766
25933
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25767
|
-
|
|
25934
|
+
platformKey: string;
|
|
25935
|
+
username: string;
|
|
25768
25936
|
course?: string;
|
|
25769
25937
|
excludeMainTenantAssertions?: boolean;
|
|
25770
25938
|
includeExpired?: boolean;
|
|
@@ -25783,7 +25951,8 @@ declare const useGetUserCredentialsQuery: <R extends Record<string, any> = _redu
|
|
|
25783
25951
|
}) => R) | undefined;
|
|
25784
25952
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
25785
25953
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25786
|
-
|
|
25954
|
+
platformKey: string;
|
|
25955
|
+
username: string;
|
|
25787
25956
|
course?: string;
|
|
25788
25957
|
excludeMainTenantAssertions?: boolean;
|
|
25789
25958
|
includeExpired?: boolean;
|
|
@@ -25811,7 +25980,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25811
25980
|
}, "isUninitialized"> & {
|
|
25812
25981
|
isUninitialized: true;
|
|
25813
25982
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25814
|
-
|
|
25983
|
+
platformKey: string;
|
|
25984
|
+
username: string;
|
|
25815
25985
|
course?: string;
|
|
25816
25986
|
excludeMainTenantAssertions?: boolean;
|
|
25817
25987
|
includeExpired?: boolean;
|
|
@@ -25834,7 +26004,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25834
26004
|
isFetching: true;
|
|
25835
26005
|
error: undefined;
|
|
25836
26006
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25837
|
-
|
|
26007
|
+
platformKey: string;
|
|
26008
|
+
username: string;
|
|
25838
26009
|
course?: string;
|
|
25839
26010
|
excludeMainTenantAssertions?: boolean;
|
|
25840
26011
|
includeExpired?: boolean;
|
|
@@ -25853,7 +26024,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25853
26024
|
isFetching: false;
|
|
25854
26025
|
error: undefined;
|
|
25855
26026
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25856
|
-
|
|
26027
|
+
platformKey: string;
|
|
26028
|
+
username: string;
|
|
25857
26029
|
course?: string;
|
|
25858
26030
|
excludeMainTenantAssertions?: boolean;
|
|
25859
26031
|
includeExpired?: boolean;
|
|
@@ -25870,7 +26042,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25870
26042
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
25871
26043
|
isError: true;
|
|
25872
26044
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25873
|
-
|
|
26045
|
+
platformKey: string;
|
|
26046
|
+
username: string;
|
|
25874
26047
|
course?: string;
|
|
25875
26048
|
excludeMainTenantAssertions?: boolean;
|
|
25876
26049
|
includeExpired?: boolean;
|
|
@@ -25907,7 +26080,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25907
26080
|
}, "isUninitialized"> & {
|
|
25908
26081
|
isUninitialized: true;
|
|
25909
26082
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25910
|
-
|
|
26083
|
+
platformKey: string;
|
|
26084
|
+
username: string;
|
|
25911
26085
|
course?: string;
|
|
25912
26086
|
excludeMainTenantAssertions?: boolean;
|
|
25913
26087
|
includeExpired?: boolean;
|
|
@@ -25930,7 +26104,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25930
26104
|
isFetching: true;
|
|
25931
26105
|
error: undefined;
|
|
25932
26106
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25933
|
-
|
|
26107
|
+
platformKey: string;
|
|
26108
|
+
username: string;
|
|
25934
26109
|
course?: string;
|
|
25935
26110
|
excludeMainTenantAssertions?: boolean;
|
|
25936
26111
|
includeExpired?: boolean;
|
|
@@ -25949,7 +26124,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25949
26124
|
isFetching: false;
|
|
25950
26125
|
error: undefined;
|
|
25951
26126
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25952
|
-
|
|
26127
|
+
platformKey: string;
|
|
26128
|
+
username: string;
|
|
25953
26129
|
course?: string;
|
|
25954
26130
|
excludeMainTenantAssertions?: boolean;
|
|
25955
26131
|
includeExpired?: boolean;
|
|
@@ -25966,7 +26142,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25966
26142
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
25967
26143
|
isError: true;
|
|
25968
26144
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25969
|
-
|
|
26145
|
+
platformKey: string;
|
|
26146
|
+
username: string;
|
|
25970
26147
|
course?: string;
|
|
25971
26148
|
excludeMainTenantAssertions?: boolean;
|
|
25972
26149
|
includeExpired?: boolean;
|
|
@@ -25984,7 +26161,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25984
26161
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
25985
26162
|
}) => R) | undefined;
|
|
25986
26163
|
}, "skip">) | undefined) => [(arg: {
|
|
25987
|
-
|
|
26164
|
+
platformKey: string;
|
|
26165
|
+
username: string;
|
|
25988
26166
|
course?: string;
|
|
25989
26167
|
excludeMainTenantAssertions?: boolean;
|
|
25990
26168
|
includeExpired?: boolean;
|
|
@@ -25992,7 +26170,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
25992
26170
|
page?: number;
|
|
25993
26171
|
pageSize?: number;
|
|
25994
26172
|
}, preferCacheValue?: boolean) => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
25995
|
-
|
|
26173
|
+
platformKey: string;
|
|
26174
|
+
username: string;
|
|
25996
26175
|
course?: string;
|
|
25997
26176
|
excludeMainTenantAssertions?: boolean;
|
|
25998
26177
|
includeExpired?: boolean;
|
|
@@ -26003,7 +26182,8 @@ declare const useLazyGetUserCredentialsQuery: <R extends Record<string, any> = _
|
|
|
26003
26182
|
reset: () => void;
|
|
26004
26183
|
}, {
|
|
26005
26184
|
lastArg: {
|
|
26006
|
-
|
|
26185
|
+
platformKey: string;
|
|
26186
|
+
username: string;
|
|
26007
26187
|
course?: string;
|
|
26008
26188
|
excludeMainTenantAssertions?: boolean;
|
|
26009
26189
|
includeExpired?: boolean;
|
|
@@ -36448,10 +36628,10 @@ declare const useGetReportDetailQuery: <R extends Record<string, any> = _reduxjs
|
|
|
36448
36628
|
isError: false;
|
|
36449
36629
|
}, "error">>)>> & {
|
|
36450
36630
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
36451
|
-
}>(arg: {
|
|
36631
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
36452
36632
|
key: string;
|
|
36453
36633
|
reportName: string;
|
|
36454
|
-
}
|
|
36634
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
36455
36635
|
skip?: boolean;
|
|
36456
36636
|
refetchOnMountOrArgChange?: boolean | number;
|
|
36457
36637
|
} & {
|