@iblai/iblai-api 2025.11.6-teams-bot-renovation-3-core → 2025.11.7-google-a2a-core
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.cjs.js +15 -59
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +15 -59
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +15 -59
- package/dist/index.umd.js.map +1 -1
- package/dist/types/models/PatchedRbacGroup.d.ts +0 -4
- package/dist/types/models/PatchedRbacPolicy.d.ts +0 -4
- package/dist/types/models/PatchedRbacRole.d.ts +0 -4
- package/dist/types/models/RbacGroup.d.ts +0 -4
- package/dist/types/models/RbacPolicy.d.ts +0 -4
- package/dist/types/models/RbacRole.d.ts +0 -4
- package/dist/types/models/RbacUser.d.ts +0 -4
- package/dist/types/services/CoreService.d.ts +11 -51
- package/package.json +1 -1
- package/sdk_schema.yml +9 -154
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/PatchedRbacGroup.ts +0 -4
- package/src/models/PatchedRbacPolicy.ts +0 -4
- package/src/models/PatchedRbacRole.ts +0 -4
- package/src/models/RbacGroup.ts +0 -4
- package/src/models/RbacPolicy.ts +0 -4
- package/src/models/RbacRole.ts +0 -4
- package/src/models/RbacUser.ts +0 -4
- package/src/services/CoreService.ts +8 -92
|
@@ -722,23 +722,15 @@ export declare class CoreService {
|
|
|
722
722
|
}): CancelablePromise<Record<string, any>>;
|
|
723
723
|
/**
|
|
724
724
|
* List RBAC groups
|
|
725
|
-
* Retrieve a list of RBAC groups. Can be filtered by platform_key
|
|
725
|
+
* Retrieve a list of RBAC groups. Can be filtered by platform_key.
|
|
726
726
|
* @returns PaginatedRbacGroupList
|
|
727
727
|
* @throws ApiError
|
|
728
728
|
*/
|
|
729
|
-
static coreRbacGroupsList({
|
|
729
|
+
static coreRbacGroupsList({ includeUsers, owner, page, pageSize, platformKey, }: {
|
|
730
730
|
/**
|
|
731
|
-
*
|
|
732
|
-
*/
|
|
733
|
-
email?: string;
|
|
734
|
-
/**
|
|
735
|
-
* Include user information in response (default: true)
|
|
731
|
+
* Include user information in response (default: false for performance)
|
|
736
732
|
*/
|
|
737
733
|
includeUsers?: boolean;
|
|
738
|
-
/**
|
|
739
|
-
* Filter groups by name (case-insensitive partial match)
|
|
740
|
-
*/
|
|
741
|
-
name?: string;
|
|
742
734
|
/**
|
|
743
735
|
* Filter groups by owner username
|
|
744
736
|
*/
|
|
@@ -755,10 +747,6 @@ export declare class CoreService {
|
|
|
755
747
|
* Filter groups by platform key
|
|
756
748
|
*/
|
|
757
749
|
platformKey?: string;
|
|
758
|
-
/**
|
|
759
|
-
* Filter groups by username (exact match, case-insensitive)
|
|
760
|
-
*/
|
|
761
|
-
username?: string;
|
|
762
750
|
}): CancelablePromise<PaginatedRbacGroupList>;
|
|
763
751
|
/**
|
|
764
752
|
* Create RBAC group
|
|
@@ -783,7 +771,7 @@ export declare class CoreService {
|
|
|
783
771
|
}): CancelablePromise<RbacGroup>;
|
|
784
772
|
/**
|
|
785
773
|
* Update RBAC group
|
|
786
|
-
* Update an existing RBAC group. Platform validation applies for user assignments.
|
|
774
|
+
* Update an existing RBAC group. Platform validation applies for user assignments.
|
|
787
775
|
* @returns RbacGroup
|
|
788
776
|
* @throws ApiError
|
|
789
777
|
*/
|
|
@@ -796,7 +784,7 @@ export declare class CoreService {
|
|
|
796
784
|
}): CancelablePromise<RbacGroup>;
|
|
797
785
|
/**
|
|
798
786
|
* Partially update RBAC group
|
|
799
|
-
* Partially update an existing RBAC group. Platform validation applies for user assignments.
|
|
787
|
+
* Partially update an existing RBAC group. Platform validation applies for user assignments.
|
|
800
788
|
* @returns RbacGroup
|
|
801
789
|
* @throws ApiError
|
|
802
790
|
*/
|
|
@@ -809,7 +797,7 @@ export declare class CoreService {
|
|
|
809
797
|
}): CancelablePromise<RbacGroup>;
|
|
810
798
|
/**
|
|
811
799
|
* Delete RBAC group
|
|
812
|
-
* Delete an RBAC group and all associated group role assignments.
|
|
800
|
+
* Delete an RBAC group and all associated group role assignments.
|
|
813
801
|
* @returns void
|
|
814
802
|
* @throws ApiError
|
|
815
803
|
*/
|
|
@@ -859,31 +847,11 @@ export declare class CoreService {
|
|
|
859
847
|
}): CancelablePromise<any>;
|
|
860
848
|
/**
|
|
861
849
|
* List RBAC policies
|
|
862
|
-
* Retrieve a list of RBAC policies. Can be filtered by platform_key
|
|
850
|
+
* Retrieve a list of RBAC policies. Can be filtered by platform_key or role_id.
|
|
863
851
|
* @returns PaginatedRbacPolicyList
|
|
864
852
|
* @throws ApiError
|
|
865
853
|
*/
|
|
866
|
-
static coreRbacPoliciesList({
|
|
867
|
-
/**
|
|
868
|
-
* Filter policies by email (exact match, case-insensitive) - includes users in policy or in policy's groups
|
|
869
|
-
*/
|
|
870
|
-
email?: string;
|
|
871
|
-
/**
|
|
872
|
-
* Filter policies by group name (exact match, case-insensitive)
|
|
873
|
-
*/
|
|
874
|
-
group?: string;
|
|
875
|
-
/**
|
|
876
|
-
* Include group information in response (default: true)
|
|
877
|
-
*/
|
|
878
|
-
includeGroups?: boolean;
|
|
879
|
-
/**
|
|
880
|
-
* Include user information in response (default: true)
|
|
881
|
-
*/
|
|
882
|
-
includeUsers?: boolean;
|
|
883
|
-
/**
|
|
884
|
-
* Filter policies by name (case-insensitive partial match)
|
|
885
|
-
*/
|
|
886
|
-
name?: string;
|
|
854
|
+
static coreRbacPoliciesList({ page, pageSize, platformKey, roleId, }: {
|
|
887
855
|
/**
|
|
888
856
|
* A page number within the paginated result set.
|
|
889
857
|
*/
|
|
@@ -900,10 +868,6 @@ export declare class CoreService {
|
|
|
900
868
|
* Filter policies by role ID
|
|
901
869
|
*/
|
|
902
870
|
roleId?: number;
|
|
903
|
-
/**
|
|
904
|
-
* Filter policies by username (exact match, case-insensitive) - includes users in policy or in policy's groups
|
|
905
|
-
*/
|
|
906
|
-
username?: string;
|
|
907
871
|
}): CancelablePromise<PaginatedRbacPolicyList>;
|
|
908
872
|
/**
|
|
909
873
|
* Create RBAC policy
|
|
@@ -970,15 +934,11 @@ export declare class CoreService {
|
|
|
970
934
|
}): CancelablePromise<void>;
|
|
971
935
|
/**
|
|
972
936
|
* List RBAC roles
|
|
973
|
-
* Retrieve a list of RBAC roles. Can be filtered by platform_key
|
|
937
|
+
* Retrieve a list of RBAC roles. Can be filtered by platform_key.
|
|
974
938
|
* @returns PaginatedRbacRoleList
|
|
975
939
|
* @throws ApiError
|
|
976
940
|
*/
|
|
977
|
-
static coreRbacRolesList({
|
|
978
|
-
/**
|
|
979
|
-
* Filter roles by name (case-insensitive partial match)
|
|
980
|
-
*/
|
|
981
|
-
name?: string;
|
|
941
|
+
static coreRbacRolesList({ page, pageSize, platformKey, }: {
|
|
982
942
|
/**
|
|
983
943
|
* A page number within the paginated result set.
|
|
984
944
|
*/
|
|
@@ -1041,7 +1001,7 @@ export declare class CoreService {
|
|
|
1041
1001
|
}): CancelablePromise<RbacRole>;
|
|
1042
1002
|
/**
|
|
1043
1003
|
* Delete RBAC role
|
|
1044
|
-
* Delete an RBAC role.
|
|
1004
|
+
* Delete an RBAC role.
|
|
1045
1005
|
* @returns void
|
|
1046
1006
|
* @throws ApiError
|
|
1047
1007
|
*/
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.82.1-core
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/analytics/content/:
|
|
@@ -16568,28 +16568,15 @@ paths:
|
|
|
16568
16568
|
/api/core/rbac/groups/:
|
|
16569
16569
|
get:
|
|
16570
16570
|
operationId: core_rbac_groups_list
|
|
16571
|
-
description: Retrieve a list of RBAC groups. Can be filtered by platform_key
|
|
16572
|
-
owner, name, username, or email. Use include_users to control response payload.
|
|
16571
|
+
description: Retrieve a list of RBAC groups. Can be filtered by platform_key.
|
|
16573
16572
|
summary: List RBAC groups
|
|
16574
16573
|
parameters:
|
|
16575
|
-
- in: query
|
|
16576
|
-
name: email
|
|
16577
|
-
schema:
|
|
16578
|
-
type: string
|
|
16579
|
-
minLength: 1
|
|
16580
|
-
description: Filter groups by email (exact match, case-insensitive)
|
|
16581
16574
|
- in: query
|
|
16582
16575
|
name: include_users
|
|
16583
16576
|
schema:
|
|
16584
16577
|
type: boolean
|
|
16585
16578
|
default: true
|
|
16586
|
-
description: 'Include user information in response (default:
|
|
16587
|
-
- in: query
|
|
16588
|
-
name: name
|
|
16589
|
-
schema:
|
|
16590
|
-
type: string
|
|
16591
|
-
minLength: 1
|
|
16592
|
-
description: Filter groups by name (case-insensitive partial match)
|
|
16579
|
+
description: 'Include user information in response (default: false for performance)'
|
|
16593
16580
|
- in: query
|
|
16594
16581
|
name: owner
|
|
16595
16582
|
schema:
|
|
@@ -16614,12 +16601,6 @@ paths:
|
|
|
16614
16601
|
type: string
|
|
16615
16602
|
minLength: 1
|
|
16616
16603
|
description: Filter groups by platform key
|
|
16617
|
-
- in: query
|
|
16618
|
-
name: username
|
|
16619
|
-
schema:
|
|
16620
|
-
type: string
|
|
16621
|
-
minLength: 1
|
|
16622
|
-
description: Filter groups by username (exact match, case-insensitive)
|
|
16623
16604
|
tags:
|
|
16624
16605
|
- core
|
|
16625
16606
|
security:
|
|
@@ -16631,8 +16612,6 @@ paths:
|
|
|
16631
16612
|
schema:
|
|
16632
16613
|
$ref: '#/components/schemas/PaginatedRbacGroupList'
|
|
16633
16614
|
description: ''
|
|
16634
|
-
'403':
|
|
16635
|
-
description: Permission denied - insufficient RBAC permissions
|
|
16636
16615
|
post:
|
|
16637
16616
|
operationId: core_rbac_groups_create
|
|
16638
16617
|
description: Create a new RBAC group for a platform. Users can be assigned during
|
|
@@ -16672,8 +16651,6 @@ paths:
|
|
|
16672
16651
|
Invalid input data. Common errors include:
|
|
16673
16652
|
- Users do not belong to the specified platform
|
|
16674
16653
|
- Invalid user IDs provided
|
|
16675
|
-
'403':
|
|
16676
|
-
description: Permission denied - insufficient RBAC permissions
|
|
16677
16654
|
/api/core/rbac/groups/{id}/:
|
|
16678
16655
|
get:
|
|
16679
16656
|
operationId: core_rbac_groups_retrieve
|
|
@@ -16697,14 +16674,12 @@ paths:
|
|
|
16697
16674
|
schema:
|
|
16698
16675
|
$ref: '#/components/schemas/RbacGroup'
|
|
16699
16676
|
description: ''
|
|
16700
|
-
'403':
|
|
16701
|
-
description: Permission denied - insufficient RBAC permissions
|
|
16702
16677
|
'404':
|
|
16703
16678
|
description: Group not found
|
|
16704
16679
|
put:
|
|
16705
16680
|
operationId: core_rbac_groups_update
|
|
16706
16681
|
description: Update an existing RBAC group. Platform validation applies for
|
|
16707
|
-
user assignments.
|
|
16682
|
+
user assignments.
|
|
16708
16683
|
summary: Update RBAC group
|
|
16709
16684
|
parameters:
|
|
16710
16685
|
- in: path
|
|
@@ -16747,15 +16722,12 @@ paths:
|
|
|
16747
16722
|
Invalid input data. Common errors include:
|
|
16748
16723
|
- Users do not belong to the specified platform
|
|
16749
16724
|
- Invalid user IDs provided
|
|
16750
|
-
'403':
|
|
16751
|
-
description: Permission denied - insufficient RBAC permissions or attempting
|
|
16752
|
-
to edit internal system group
|
|
16753
16725
|
'404':
|
|
16754
16726
|
description: Group not found
|
|
16755
16727
|
patch:
|
|
16756
16728
|
operationId: core_rbac_groups_partial_update
|
|
16757
16729
|
description: Partially update an existing RBAC group. Platform validation applies
|
|
16758
|
-
for user assignments.
|
|
16730
|
+
for user assignments.
|
|
16759
16731
|
summary: Partially update RBAC group
|
|
16760
16732
|
parameters:
|
|
16761
16733
|
- in: path
|
|
@@ -16797,15 +16769,11 @@ paths:
|
|
|
16797
16769
|
Invalid input data. Common errors include:
|
|
16798
16770
|
- Users do not belong to the specified platform
|
|
16799
16771
|
- Invalid user IDs provided
|
|
16800
|
-
'403':
|
|
16801
|
-
description: Permission denied - insufficient RBAC permissions or attempting
|
|
16802
|
-
to edit internal system group
|
|
16803
16772
|
'404':
|
|
16804
16773
|
description: Group not found
|
|
16805
16774
|
delete:
|
|
16806
16775
|
operationId: core_rbac_groups_destroy
|
|
16807
16776
|
description: Delete an RBAC group and all associated group role assignments.
|
|
16808
|
-
Cannot delete internal system groups.
|
|
16809
16777
|
summary: Delete RBAC group
|
|
16810
16778
|
parameters:
|
|
16811
16779
|
- in: path
|
|
@@ -16828,9 +16796,6 @@ paths:
|
|
|
16828
16796
|
responses:
|
|
16829
16797
|
'204':
|
|
16830
16798
|
description: Group deleted successfully
|
|
16831
|
-
'403':
|
|
16832
|
-
description: Permission denied - insufficient RBAC permissions or attempting
|
|
16833
|
-
to delete internal system group
|
|
16834
16799
|
'404':
|
|
16835
16800
|
description: Group not found
|
|
16836
16801
|
/api/core/rbac/mentor-access/:
|
|
@@ -16960,42 +16925,10 @@ paths:
|
|
|
16960
16925
|
/api/core/rbac/policies/:
|
|
16961
16926
|
get:
|
|
16962
16927
|
operationId: core_rbac_policies_list
|
|
16963
|
-
description: Retrieve a list of RBAC policies. Can be filtered by platform_key
|
|
16964
|
-
|
|
16965
|
-
to control response payload.
|
|
16928
|
+
description: Retrieve a list of RBAC policies. Can be filtered by platform_key
|
|
16929
|
+
or role_id.
|
|
16966
16930
|
summary: List RBAC policies
|
|
16967
16931
|
parameters:
|
|
16968
|
-
- in: query
|
|
16969
|
-
name: email
|
|
16970
|
-
schema:
|
|
16971
|
-
type: string
|
|
16972
|
-
minLength: 1
|
|
16973
|
-
description: Filter policies by email (exact match, case-insensitive) - includes
|
|
16974
|
-
users in policy or in policy's groups
|
|
16975
|
-
- in: query
|
|
16976
|
-
name: group
|
|
16977
|
-
schema:
|
|
16978
|
-
type: string
|
|
16979
|
-
minLength: 1
|
|
16980
|
-
description: Filter policies by group name (exact match, case-insensitive)
|
|
16981
|
-
- in: query
|
|
16982
|
-
name: include_groups
|
|
16983
|
-
schema:
|
|
16984
|
-
type: boolean
|
|
16985
|
-
default: true
|
|
16986
|
-
description: 'Include group information in response (default: true)'
|
|
16987
|
-
- in: query
|
|
16988
|
-
name: include_users
|
|
16989
|
-
schema:
|
|
16990
|
-
type: boolean
|
|
16991
|
-
default: true
|
|
16992
|
-
description: 'Include user information in response (default: true)'
|
|
16993
|
-
- in: query
|
|
16994
|
-
name: name
|
|
16995
|
-
schema:
|
|
16996
|
-
type: string
|
|
16997
|
-
minLength: 1
|
|
16998
|
-
description: Filter policies by name (case-insensitive partial match)
|
|
16999
16932
|
- name: page
|
|
17000
16933
|
required: false
|
|
17001
16934
|
in: query
|
|
@@ -17019,13 +16952,6 @@ paths:
|
|
|
17019
16952
|
schema:
|
|
17020
16953
|
type: integer
|
|
17021
16954
|
description: Filter policies by role ID
|
|
17022
|
-
- in: query
|
|
17023
|
-
name: username
|
|
17024
|
-
schema:
|
|
17025
|
-
type: string
|
|
17026
|
-
minLength: 1
|
|
17027
|
-
description: Filter policies by username (exact match, case-insensitive) -
|
|
17028
|
-
includes users in policy or in policy's groups
|
|
17029
16955
|
tags:
|
|
17030
16956
|
- core
|
|
17031
16957
|
security:
|
|
@@ -17037,8 +16963,6 @@ paths:
|
|
|
17037
16963
|
schema:
|
|
17038
16964
|
$ref: '#/components/schemas/PaginatedRbacPolicyList'
|
|
17039
16965
|
description: ''
|
|
17040
|
-
'403':
|
|
17041
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17042
16966
|
post:
|
|
17043
16967
|
operationId: core_rbac_policies_create
|
|
17044
16968
|
description: Create a new RBAC policy that defines resource access for a role
|
|
@@ -17075,8 +16999,6 @@ paths:
|
|
|
17075
16999
|
'400':
|
|
17076
17000
|
description: 'Invalid input data. Common errors include: invalid user/group
|
|
17077
17001
|
IDs, users/groups not belonging to the platform, or invalid resource paths.'
|
|
17078
|
-
'403':
|
|
17079
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17080
17002
|
/api/core/rbac/policies/{id}/:
|
|
17081
17003
|
get:
|
|
17082
17004
|
operationId: core_rbac_policies_retrieve
|
|
@@ -17101,8 +17023,6 @@ paths:
|
|
|
17101
17023
|
schema:
|
|
17102
17024
|
$ref: '#/components/schemas/RbacPolicy'
|
|
17103
17025
|
description: ''
|
|
17104
|
-
'403':
|
|
17105
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17106
17026
|
'404':
|
|
17107
17027
|
description: Policy not found
|
|
17108
17028
|
put:
|
|
@@ -17148,8 +17068,6 @@ paths:
|
|
|
17148
17068
|
'400':
|
|
17149
17069
|
description: 'Invalid input data. Common errors include: invalid user/group
|
|
17150
17070
|
IDs, users/groups not belonging to the platform, or invalid resource paths.'
|
|
17151
|
-
'403':
|
|
17152
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17153
17071
|
'404':
|
|
17154
17072
|
description: Policy not found
|
|
17155
17073
|
patch:
|
|
@@ -17195,8 +17113,6 @@ paths:
|
|
|
17195
17113
|
'400':
|
|
17196
17114
|
description: 'Invalid input data. Common errors include: invalid user/group
|
|
17197
17115
|
IDs, users/groups not belonging to the platform, or invalid resource paths.'
|
|
17198
|
-
'403':
|
|
17199
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17200
17116
|
'404':
|
|
17201
17117
|
description: Policy not found
|
|
17202
17118
|
delete:
|
|
@@ -17224,23 +17140,14 @@ paths:
|
|
|
17224
17140
|
responses:
|
|
17225
17141
|
'204':
|
|
17226
17142
|
description: Policy deleted successfully
|
|
17227
|
-
'403':
|
|
17228
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17229
17143
|
'404':
|
|
17230
17144
|
description: Policy not found
|
|
17231
17145
|
/api/core/rbac/roles/:
|
|
17232
17146
|
get:
|
|
17233
17147
|
operationId: core_rbac_roles_list
|
|
17234
|
-
description: Retrieve a list of RBAC roles. Can be filtered by platform_key
|
|
17235
|
-
and name.
|
|
17148
|
+
description: Retrieve a list of RBAC roles. Can be filtered by platform_key.
|
|
17236
17149
|
summary: List RBAC roles
|
|
17237
17150
|
parameters:
|
|
17238
|
-
- in: query
|
|
17239
|
-
name: name
|
|
17240
|
-
schema:
|
|
17241
|
-
type: string
|
|
17242
|
-
minLength: 1
|
|
17243
|
-
description: Filter roles by name (case-insensitive partial match)
|
|
17244
17151
|
- name: page
|
|
17245
17152
|
required: false
|
|
17246
17153
|
in: query
|
|
@@ -17270,8 +17177,6 @@ paths:
|
|
|
17270
17177
|
schema:
|
|
17271
17178
|
$ref: '#/components/schemas/PaginatedRbacRoleList'
|
|
17272
17179
|
description: ''
|
|
17273
|
-
'403':
|
|
17274
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17275
17180
|
post:
|
|
17276
17181
|
operationId: core_rbac_roles_create
|
|
17277
17182
|
description: Create a new RBAC role for a platform.
|
|
@@ -17307,8 +17212,6 @@ paths:
|
|
|
17307
17212
|
description: ''
|
|
17308
17213
|
'400':
|
|
17309
17214
|
description: Invalid input data
|
|
17310
|
-
'403':
|
|
17311
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17312
17215
|
/api/core/rbac/roles/{id}/:
|
|
17313
17216
|
get:
|
|
17314
17217
|
operationId: core_rbac_roles_retrieve
|
|
@@ -17332,8 +17235,6 @@ paths:
|
|
|
17332
17235
|
schema:
|
|
17333
17236
|
$ref: '#/components/schemas/RbacRole'
|
|
17334
17237
|
description: ''
|
|
17335
|
-
'403':
|
|
17336
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17337
17238
|
'404':
|
|
17338
17239
|
description: Role not found
|
|
17339
17240
|
put:
|
|
@@ -17378,8 +17279,6 @@ paths:
|
|
|
17378
17279
|
description: ''
|
|
17379
17280
|
'400':
|
|
17380
17281
|
description: Invalid input data
|
|
17381
|
-
'403':
|
|
17382
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17383
17282
|
'404':
|
|
17384
17283
|
description: Role not found
|
|
17385
17284
|
patch:
|
|
@@ -17423,14 +17322,11 @@ paths:
|
|
|
17423
17322
|
description: ''
|
|
17424
17323
|
'400':
|
|
17425
17324
|
description: Invalid input data
|
|
17426
|
-
'403':
|
|
17427
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17428
17325
|
'404':
|
|
17429
17326
|
description: Role not found
|
|
17430
17327
|
delete:
|
|
17431
17328
|
operationId: core_rbac_roles_destroy
|
|
17432
|
-
description:
|
|
17433
|
-
policies referencing it.'
|
|
17329
|
+
description: Delete an RBAC role.
|
|
17434
17330
|
summary: Delete RBAC role
|
|
17435
17331
|
parameters:
|
|
17436
17332
|
- in: path
|
|
@@ -17453,8 +17349,6 @@ paths:
|
|
|
17453
17349
|
responses:
|
|
17454
17350
|
'204':
|
|
17455
17351
|
description: Role deleted successfully
|
|
17456
|
-
'403':
|
|
17457
|
-
description: Permission denied - insufficient RBAC permissions
|
|
17458
17352
|
'404':
|
|
17459
17353
|
description: Role not found
|
|
17460
17354
|
/api/core/rbac/student-llm-access/set/:
|
|
@@ -37340,11 +37234,6 @@ components:
|
|
|
37340
37234
|
type: integer
|
|
37341
37235
|
writeOnly: true
|
|
37342
37236
|
description: List of user IDs to remove from this group
|
|
37343
|
-
is_internal:
|
|
37344
|
-
type: boolean
|
|
37345
|
-
readOnly: true
|
|
37346
|
-
description: When True, this group is internal to the system and cannot
|
|
37347
|
-
be viewed or modified by tenants via API endpoints.
|
|
37348
37237
|
PatchedRbacPolicy:
|
|
37349
37238
|
type: object
|
|
37350
37239
|
description: Serializer for policies.
|
|
@@ -37414,11 +37303,6 @@ components:
|
|
|
37414
37303
|
type: integer
|
|
37415
37304
|
writeOnly: true
|
|
37416
37305
|
description: List of group IDs to remove from this Policy
|
|
37417
|
-
is_internal:
|
|
37418
|
-
type: boolean
|
|
37419
|
-
readOnly: true
|
|
37420
|
-
description: When True, this policy is internal to the system and cannot
|
|
37421
|
-
be viewed or modified by tenants via API endpoints.
|
|
37422
37306
|
PatchedRbacRole:
|
|
37423
37307
|
type: object
|
|
37424
37308
|
description: Serializer for roles.
|
|
@@ -37450,11 +37334,6 @@ components:
|
|
|
37450
37334
|
type: string
|
|
37451
37335
|
description: List of data actions/permissions this role can perform for
|
|
37452
37336
|
field-level access (e.g., ['Ibl.Mentor/Settings/name/read', 'Ibl.Mentor/Settings/email/write'])
|
|
37453
|
-
is_internal:
|
|
37454
|
-
type: boolean
|
|
37455
|
-
readOnly: true
|
|
37456
|
-
description: When True, this role is internal to the system and cannot be
|
|
37457
|
-
viewed or modified by tenants via API endpoints.
|
|
37458
37337
|
PatchedSCIMGroup:
|
|
37459
37338
|
type: object
|
|
37460
37339
|
description: SCIM group serializer for RBAC group management
|
|
@@ -40759,14 +40638,8 @@ components:
|
|
|
40759
40638
|
type: integer
|
|
40760
40639
|
writeOnly: true
|
|
40761
40640
|
description: List of user IDs to remove from this group
|
|
40762
|
-
is_internal:
|
|
40763
|
-
type: boolean
|
|
40764
|
-
readOnly: true
|
|
40765
|
-
description: When True, this group is internal to the system and cannot
|
|
40766
|
-
be viewed or modified by tenants via API endpoints.
|
|
40767
40641
|
required:
|
|
40768
40642
|
- id
|
|
40769
|
-
- is_internal
|
|
40770
40643
|
- owner
|
|
40771
40644
|
- platform
|
|
40772
40645
|
- platform_key
|
|
@@ -40860,15 +40733,9 @@ components:
|
|
|
40860
40733
|
type: integer
|
|
40861
40734
|
writeOnly: true
|
|
40862
40735
|
description: List of group IDs to remove from this Policy
|
|
40863
|
-
is_internal:
|
|
40864
|
-
type: boolean
|
|
40865
|
-
readOnly: true
|
|
40866
|
-
description: When True, this policy is internal to the system and cannot
|
|
40867
|
-
be viewed or modified by tenants via API endpoints.
|
|
40868
40736
|
required:
|
|
40869
40737
|
- groups
|
|
40870
40738
|
- id
|
|
40871
|
-
- is_internal
|
|
40872
40739
|
- platform
|
|
40873
40740
|
- platform_key
|
|
40874
40741
|
- resources
|
|
@@ -40930,14 +40797,8 @@ components:
|
|
|
40930
40797
|
type: string
|
|
40931
40798
|
description: List of data actions/permissions this role can perform for
|
|
40932
40799
|
field-level access (e.g., ['Ibl.Mentor/Settings/name/read', 'Ibl.Mentor/Settings/email/write'])
|
|
40933
|
-
is_internal:
|
|
40934
|
-
type: boolean
|
|
40935
|
-
readOnly: true
|
|
40936
|
-
description: When True, this role is internal to the system and cannot be
|
|
40937
|
-
viewed or modified by tenants via API endpoints.
|
|
40938
40800
|
required:
|
|
40939
40801
|
- id
|
|
40940
|
-
- is_internal
|
|
40941
40802
|
- name
|
|
40942
40803
|
- platform
|
|
40943
40804
|
- platform_key
|
|
@@ -40954,12 +40815,6 @@ components:
|
|
|
40954
40815
|
nullable: true
|
|
40955
40816
|
description: edX username
|
|
40956
40817
|
maxLength: 100
|
|
40957
|
-
email:
|
|
40958
|
-
type: string
|
|
40959
|
-
format: email
|
|
40960
|
-
nullable: true
|
|
40961
|
-
description: edX email
|
|
40962
|
-
maxLength: 254
|
|
40963
40818
|
required:
|
|
40964
40819
|
- id
|
|
40965
40820
|
Recipient:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -36,9 +36,5 @@ export type PatchedRbacGroup = {
|
|
|
36
36
|
* List of user IDs to remove from this group
|
|
37
37
|
*/
|
|
38
38
|
users_to_remove?: Array<number>;
|
|
39
|
-
/**
|
|
40
|
-
* When True, this group is internal to the system and cannot be viewed or modified by tenants via API endpoints.
|
|
41
|
-
*/
|
|
42
|
-
readonly is_internal?: boolean;
|
|
43
39
|
};
|
|
44
40
|
|
|
@@ -53,9 +53,5 @@ export type PatchedRbacPolicy = {
|
|
|
53
53
|
* List of group IDs to remove from this Policy
|
|
54
54
|
*/
|
|
55
55
|
groups_to_remove?: Array<number>;
|
|
56
|
-
/**
|
|
57
|
-
* When True, this policy is internal to the system and cannot be viewed or modified by tenants via API endpoints.
|
|
58
|
-
*/
|
|
59
|
-
readonly is_internal?: boolean;
|
|
60
56
|
};
|
|
61
57
|
|
|
@@ -25,9 +25,5 @@ export type PatchedRbacRole = {
|
|
|
25
25
|
* List of data actions/permissions this role can perform for field-level access (e.g., ['Ibl.Mentor/Settings/name/read', 'Ibl.Mentor/Settings/email/write'])
|
|
26
26
|
*/
|
|
27
27
|
data_actions?: Array<string>;
|
|
28
|
-
/**
|
|
29
|
-
* When True, this role is internal to the system and cannot be viewed or modified by tenants via API endpoints.
|
|
30
|
-
*/
|
|
31
|
-
readonly is_internal?: boolean;
|
|
32
28
|
};
|
|
33
29
|
|
package/src/models/RbacGroup.ts
CHANGED
|
@@ -36,9 +36,5 @@ export type RbacGroup = {
|
|
|
36
36
|
* List of user IDs to remove from this group
|
|
37
37
|
*/
|
|
38
38
|
users_to_remove?: Array<number>;
|
|
39
|
-
/**
|
|
40
|
-
* When True, this group is internal to the system and cannot be viewed or modified by tenants via API endpoints.
|
|
41
|
-
*/
|
|
42
|
-
readonly is_internal: boolean;
|
|
43
39
|
};
|
|
44
40
|
|
package/src/models/RbacPolicy.ts
CHANGED
|
@@ -53,9 +53,5 @@ export type RbacPolicy = {
|
|
|
53
53
|
* List of group IDs to remove from this Policy
|
|
54
54
|
*/
|
|
55
55
|
groups_to_remove?: Array<number>;
|
|
56
|
-
/**
|
|
57
|
-
* When True, this policy is internal to the system and cannot be viewed or modified by tenants via API endpoints.
|
|
58
|
-
*/
|
|
59
|
-
readonly is_internal: boolean;
|
|
60
56
|
};
|
|
61
57
|
|
package/src/models/RbacRole.ts
CHANGED
|
@@ -25,9 +25,5 @@ export type RbacRole = {
|
|
|
25
25
|
* List of data actions/permissions this role can perform for field-level access (e.g., ['Ibl.Mentor/Settings/name/read', 'Ibl.Mentor/Settings/email/write'])
|
|
26
26
|
*/
|
|
27
27
|
data_actions?: Array<string>;
|
|
28
|
-
/**
|
|
29
|
-
* When True, this role is internal to the system and cannot be viewed or modified by tenants via API endpoints.
|
|
30
|
-
*/
|
|
31
|
-
readonly is_internal: boolean;
|
|
32
28
|
};
|
|
33
29
|
|