@iblai/iblai-api 2025.11.4-teams-bot-renovation-ai → 2025.11.5-teams-bot-renovation-ai
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 +274 -33
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +275 -34
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +274 -33
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +7 -0
- package/dist/types/models/AuthTypeEnum.d.ts +10 -0
- package/dist/types/models/CallConfiguration.d.ts +3 -3
- package/dist/types/models/MCPServer.d.ts +26 -0
- package/dist/types/models/ModerationLog.d.ts +1 -0
- package/dist/types/models/NotificationTemplateDetail.d.ts +17 -0
- package/dist/types/models/PaginatedVeoVideoListList.d.ts +7 -0
- package/dist/types/models/PatchedCallConfiguration.d.ts +1 -1
- package/dist/types/models/PatchedMCPServer.d.ts +26 -0
- package/dist/types/models/PatchedNotificationTemplateDetail.d.ts +17 -0
- package/dist/types/models/PatchedRbacGroup.d.ts +4 -0
- package/dist/types/models/PatchedRbacPolicy.d.ts +4 -0
- package/dist/types/models/PatchedRbacRole.d.ts +4 -0
- package/dist/types/models/PeriodicFrequencyEnum.d.ts +12 -0
- package/dist/types/models/PeriodicLearnerScopeEnum.d.ts +8 -0
- package/dist/types/models/RbacGroup.d.ts +4 -0
- package/dist/types/models/RbacPolicy.d.ts +4 -0
- package/dist/types/models/RbacRole.d.ts +4 -0
- package/dist/types/models/RbacUser.d.ts +4 -0
- package/dist/types/models/VeoVideoDetail.d.ts +10 -0
- package/dist/types/models/VeoVideoList.d.ts +6 -0
- package/dist/types/models/VeoVideoRequest.d.ts +5 -0
- package/dist/types/services/AiMediaService.d.ts +57 -0
- package/dist/types/services/AiMentorService.d.ts +34 -17
- package/dist/types/services/AiSearchService.d.ts +36 -3
- package/dist/types/services/CoreService.d.ts +51 -11
- package/package.json +1 -1
- package/sdk_schema.yml +737 -58
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +7 -0
- package/src/models/AuthTypeEnum.ts +14 -0
- package/src/models/CallConfiguration.ts +3 -3
- package/src/models/MCPServer.ts +26 -0
- package/src/models/ModerationLog.ts +1 -0
- package/src/models/NotificationTemplateDetail.ts +17 -0
- package/src/models/PaginatedVeoVideoListList.ts +12 -0
- package/src/models/PatchedCallConfiguration.ts +1 -1
- package/src/models/PatchedMCPServer.ts +26 -0
- package/src/models/PatchedNotificationTemplateDetail.ts +17 -0
- package/src/models/PatchedRbacGroup.ts +4 -0
- package/src/models/PatchedRbacPolicy.ts +4 -0
- package/src/models/PatchedRbacRole.ts +4 -0
- package/src/models/PeriodicFrequencyEnum.ts +16 -0
- package/src/models/PeriodicLearnerScopeEnum.ts +12 -0
- package/src/models/RbacGroup.ts +4 -0
- package/src/models/RbacPolicy.ts +4 -0
- package/src/models/RbacRole.ts +4 -0
- package/src/models/RbacUser.ts +4 -0
- package/src/models/VeoVideoDetail.ts +15 -0
- package/src/models/VeoVideoList.ts +11 -0
- package/src/models/VeoVideoRequest.ts +10 -0
- package/src/services/AiMediaService.ts +136 -0
- package/src/services/AiMentorService.ts +51 -18
- package/src/services/AiSearchService.ts +45 -4
- package/src/services/CoreService.ts +92 -8
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.85.2-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -13012,6 +13012,191 @@ paths:
|
|
|
13012
13012
|
responses:
|
|
13013
13013
|
'204':
|
|
13014
13014
|
description: No response body
|
|
13015
|
+
/api/ai-media/orgs/{org}/users/{user_id}/veo/video-download/{veo_video_id}/:
|
|
13016
|
+
get:
|
|
13017
|
+
operationId: ai_media_orgs_users_veo_video_download_retrieve
|
|
13018
|
+
description: |-
|
|
13019
|
+
Endpoint used to download a Veo video.
|
|
13020
|
+
|
|
13021
|
+
|
|
13022
|
+
Only platform admins have access to this endpoint.
|
|
13023
|
+
parameters:
|
|
13024
|
+
- in: path
|
|
13025
|
+
name: org
|
|
13026
|
+
schema:
|
|
13027
|
+
type: string
|
|
13028
|
+
required: true
|
|
13029
|
+
- in: path
|
|
13030
|
+
name: user_id
|
|
13031
|
+
schema:
|
|
13032
|
+
type: string
|
|
13033
|
+
required: true
|
|
13034
|
+
- in: path
|
|
13035
|
+
name: veo_video_id
|
|
13036
|
+
schema:
|
|
13037
|
+
type: string
|
|
13038
|
+
required: true
|
|
13039
|
+
tags:
|
|
13040
|
+
- ai-media
|
|
13041
|
+
security:
|
|
13042
|
+
- PlatformApiKeyAuthentication: []
|
|
13043
|
+
responses:
|
|
13044
|
+
'200':
|
|
13045
|
+
description: No response body
|
|
13046
|
+
/api/ai-media/orgs/{org}/users/{user_id}/veo/videos/:
|
|
13047
|
+
get:
|
|
13048
|
+
operationId: ai_media_orgs_users_veo_videos_list
|
|
13049
|
+
description: Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
|
|
13050
|
+
parameters:
|
|
13051
|
+
- in: path
|
|
13052
|
+
name: org
|
|
13053
|
+
schema:
|
|
13054
|
+
type: string
|
|
13055
|
+
required: true
|
|
13056
|
+
- name: page
|
|
13057
|
+
required: false
|
|
13058
|
+
in: query
|
|
13059
|
+
description: A page number within the paginated result set.
|
|
13060
|
+
schema:
|
|
13061
|
+
type: integer
|
|
13062
|
+
- in: path
|
|
13063
|
+
name: user_id
|
|
13064
|
+
schema:
|
|
13065
|
+
type: string
|
|
13066
|
+
required: true
|
|
13067
|
+
tags:
|
|
13068
|
+
- ai-media
|
|
13069
|
+
security:
|
|
13070
|
+
- PlatformApiKeyAuthentication: []
|
|
13071
|
+
responses:
|
|
13072
|
+
'200':
|
|
13073
|
+
content:
|
|
13074
|
+
application/json:
|
|
13075
|
+
schema:
|
|
13076
|
+
$ref: '#/components/schemas/PaginatedVeoVideoListList'
|
|
13077
|
+
description: ''
|
|
13078
|
+
post:
|
|
13079
|
+
operationId: ai_media_orgs_users_veo_videos_create
|
|
13080
|
+
description: |-
|
|
13081
|
+
Endpoint to create a Veo3 video
|
|
13082
|
+
|
|
13083
|
+
Only platform admins have access to this endpoint.
|
|
13084
|
+
parameters:
|
|
13085
|
+
- in: path
|
|
13086
|
+
name: org
|
|
13087
|
+
schema:
|
|
13088
|
+
type: string
|
|
13089
|
+
required: true
|
|
13090
|
+
- in: path
|
|
13091
|
+
name: user_id
|
|
13092
|
+
schema:
|
|
13093
|
+
type: string
|
|
13094
|
+
required: true
|
|
13095
|
+
tags:
|
|
13096
|
+
- ai-media
|
|
13097
|
+
requestBody:
|
|
13098
|
+
content:
|
|
13099
|
+
multipart/form-data:
|
|
13100
|
+
schema:
|
|
13101
|
+
$ref: '#/components/schemas/VeoVideoRequest'
|
|
13102
|
+
application/x-www-form-urlencoded:
|
|
13103
|
+
schema:
|
|
13104
|
+
$ref: '#/components/schemas/VeoVideoRequest'
|
|
13105
|
+
application/json:
|
|
13106
|
+
schema:
|
|
13107
|
+
$ref: '#/components/schemas/VeoVideoRequest'
|
|
13108
|
+
examples:
|
|
13109
|
+
VeoVideoExample:
|
|
13110
|
+
value:
|
|
13111
|
+
name: video name
|
|
13112
|
+
data: {}
|
|
13113
|
+
prompt_text: Hello world. this is a prompt.
|
|
13114
|
+
prompt_image: https://example.com/abcd.png
|
|
13115
|
+
id: 35
|
|
13116
|
+
video_file: https://example.com/abcd.mp4
|
|
13117
|
+
generation_status: completed
|
|
13118
|
+
summary: Veo video example
|
|
13119
|
+
required: true
|
|
13120
|
+
security:
|
|
13121
|
+
- PlatformApiKeyAuthentication: []
|
|
13122
|
+
responses:
|
|
13123
|
+
'200':
|
|
13124
|
+
content:
|
|
13125
|
+
application/json:
|
|
13126
|
+
schema:
|
|
13127
|
+
$ref: '#/components/schemas/VeoVideoDetail'
|
|
13128
|
+
examples:
|
|
13129
|
+
VeoVideoExample:
|
|
13130
|
+
value:
|
|
13131
|
+
name: video name
|
|
13132
|
+
data: {}
|
|
13133
|
+
prompt_text: Hello world. this is a prompt.
|
|
13134
|
+
prompt_image: https://example.com/abcd.png
|
|
13135
|
+
id: 35
|
|
13136
|
+
video_file: https://example.com/abcd.mp4
|
|
13137
|
+
generation_status: completed
|
|
13138
|
+
summary: Veo video example
|
|
13139
|
+
description: ''
|
|
13140
|
+
/api/ai-media/orgs/{org}/users/{user_id}/veo/videos/{veo_video_id}/:
|
|
13141
|
+
get:
|
|
13142
|
+
operationId: ai_media_orgs_users_veo_videos_retrieve
|
|
13143
|
+
description: Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
|
|
13144
|
+
parameters:
|
|
13145
|
+
- in: path
|
|
13146
|
+
name: org
|
|
13147
|
+
schema:
|
|
13148
|
+
type: string
|
|
13149
|
+
required: true
|
|
13150
|
+
- in: path
|
|
13151
|
+
name: user_id
|
|
13152
|
+
schema:
|
|
13153
|
+
type: string
|
|
13154
|
+
required: true
|
|
13155
|
+
- in: path
|
|
13156
|
+
name: veo_video_id
|
|
13157
|
+
schema:
|
|
13158
|
+
type: string
|
|
13159
|
+
required: true
|
|
13160
|
+
tags:
|
|
13161
|
+
- ai-media
|
|
13162
|
+
security:
|
|
13163
|
+
- PlatformApiKeyAuthentication: []
|
|
13164
|
+
responses:
|
|
13165
|
+
'200':
|
|
13166
|
+
content:
|
|
13167
|
+
application/json:
|
|
13168
|
+
schema:
|
|
13169
|
+
$ref: '#/components/schemas/VeoVideoDetail'
|
|
13170
|
+
description: ''
|
|
13171
|
+
delete:
|
|
13172
|
+
operationId: ai_media_orgs_users_veo_videos_destroy
|
|
13173
|
+
description: |-
|
|
13174
|
+
Endpoint used to delete a veo3 video.
|
|
13175
|
+
|
|
13176
|
+
Only platform admins have access to this endpoint.
|
|
13177
|
+
parameters:
|
|
13178
|
+
- in: path
|
|
13179
|
+
name: org
|
|
13180
|
+
schema:
|
|
13181
|
+
type: string
|
|
13182
|
+
required: true
|
|
13183
|
+
- in: path
|
|
13184
|
+
name: user_id
|
|
13185
|
+
schema:
|
|
13186
|
+
type: string
|
|
13187
|
+
required: true
|
|
13188
|
+
- in: path
|
|
13189
|
+
name: veo_video_id
|
|
13190
|
+
schema:
|
|
13191
|
+
type: string
|
|
13192
|
+
required: true
|
|
13193
|
+
tags:
|
|
13194
|
+
- ai-media
|
|
13195
|
+
security:
|
|
13196
|
+
- PlatformApiKeyAuthentication: []
|
|
13197
|
+
responses:
|
|
13198
|
+
'204':
|
|
13199
|
+
description: No response body
|
|
13015
13200
|
/api/ai-media/orgs/{org}/users/{user_id}/video-script-generation/audio/:
|
|
13016
13201
|
post:
|
|
13017
13202
|
operationId: ai_media_orgs_users_video_script_generation_audio_create
|
|
@@ -15702,7 +15887,7 @@ paths:
|
|
|
15702
15887
|
- in: query
|
|
15703
15888
|
name: mentor
|
|
15704
15889
|
schema:
|
|
15705
|
-
type:
|
|
15890
|
+
type: string
|
|
15706
15891
|
- in: query
|
|
15707
15892
|
name: mode
|
|
15708
15893
|
schema:
|
|
@@ -21261,6 +21446,28 @@ paths:
|
|
|
21261
21446
|
Returns a paginated list of MCP servers that can be filtered by platform
|
|
21262
21447
|
and searched by name or URL.
|
|
21263
21448
|
parameters:
|
|
21449
|
+
- in: query
|
|
21450
|
+
name: auth_type
|
|
21451
|
+
schema:
|
|
21452
|
+
type: string
|
|
21453
|
+
enum:
|
|
21454
|
+
- none
|
|
21455
|
+
- oauth2
|
|
21456
|
+
- token
|
|
21457
|
+
description: |-
|
|
21458
|
+
The type of authentication to use for the MCP server.
|
|
21459
|
+
|
|
21460
|
+
* `none` - None
|
|
21461
|
+
* `token` - Token
|
|
21462
|
+
* `oauth2` - Oauth2
|
|
21463
|
+
- in: query
|
|
21464
|
+
name: is_enabled
|
|
21465
|
+
schema:
|
|
21466
|
+
type: boolean
|
|
21467
|
+
- in: query
|
|
21468
|
+
name: is_featured
|
|
21469
|
+
schema:
|
|
21470
|
+
type: boolean
|
|
21264
21471
|
- in: path
|
|
21265
21472
|
name: org
|
|
21266
21473
|
schema:
|
|
@@ -21278,16 +21485,24 @@ paths:
|
|
|
21278
21485
|
description: Number of results to return per page.
|
|
21279
21486
|
schema:
|
|
21280
21487
|
type: integer
|
|
21281
|
-
- in: query
|
|
21282
|
-
name: platform
|
|
21283
|
-
schema:
|
|
21284
|
-
type: integer
|
|
21285
21488
|
- name: search
|
|
21286
21489
|
required: false
|
|
21287
21490
|
in: query
|
|
21288
21491
|
description: A search term.
|
|
21289
21492
|
schema:
|
|
21290
21493
|
type: string
|
|
21494
|
+
- in: query
|
|
21495
|
+
name: transport
|
|
21496
|
+
schema:
|
|
21497
|
+
type: string
|
|
21498
|
+
enum:
|
|
21499
|
+
- sse
|
|
21500
|
+
- streamable_http
|
|
21501
|
+
- websocket
|
|
21502
|
+
description: |-
|
|
21503
|
+
* `sse` - Sse
|
|
21504
|
+
* `websocket` - Websocket
|
|
21505
|
+
* `streamable_http` - Streamable Http
|
|
21291
21506
|
- in: path
|
|
21292
21507
|
name: user_id
|
|
21293
21508
|
schema:
|
|
@@ -21312,17 +21527,29 @@ paths:
|
|
|
21312
21527
|
results:
|
|
21313
21528
|
- - id: 1
|
|
21314
21529
|
name: MCP Server 1
|
|
21530
|
+
description: Description of MCP Server 1
|
|
21531
|
+
image: https://base.manager.iblai.app/media/public/mcp-server/image/1.png
|
|
21315
21532
|
url: https://mcp-server-1.example.com
|
|
21316
21533
|
transport: sse
|
|
21534
|
+
credentials: Bearer ****
|
|
21317
21535
|
platform: 1
|
|
21318
21536
|
headers:
|
|
21319
|
-
|
|
21537
|
+
content-type: application/json
|
|
21538
|
+
is_featured: true
|
|
21539
|
+
auth_type: bearer
|
|
21540
|
+
is_enabled: true
|
|
21320
21541
|
- id: 2
|
|
21321
21542
|
name: MCP Server 2
|
|
21543
|
+
description: Description of MCP Server 2
|
|
21544
|
+
image: https://base.manager.iblai.app/media/public/mcp-server/image/2.png
|
|
21322
21545
|
url: https://mcp-server-2.example.com
|
|
21323
21546
|
transport: sse
|
|
21324
21547
|
platform: 1
|
|
21548
|
+
credentials: ''
|
|
21325
21549
|
headers: {}
|
|
21550
|
+
is_featured: false
|
|
21551
|
+
auth_type: none
|
|
21552
|
+
is_enabled: true
|
|
21326
21553
|
summary: Successful Response
|
|
21327
21554
|
description: ''
|
|
21328
21555
|
post:
|
|
@@ -21349,19 +21576,13 @@ paths:
|
|
|
21349
21576
|
- ai-mentor
|
|
21350
21577
|
requestBody:
|
|
21351
21578
|
content:
|
|
21352
|
-
|
|
21353
|
-
schema:
|
|
21354
|
-
$ref: '#/components/schemas/MCPServer'
|
|
21355
|
-
application/scim+json:
|
|
21579
|
+
multipart/form-data:
|
|
21356
21580
|
schema:
|
|
21357
21581
|
$ref: '#/components/schemas/MCPServer'
|
|
21358
21582
|
application/x-www-form-urlencoded:
|
|
21359
21583
|
schema:
|
|
21360
21584
|
$ref: '#/components/schemas/MCPServer'
|
|
21361
|
-
|
|
21362
|
-
schema:
|
|
21363
|
-
$ref: '#/components/schemas/MCPServer'
|
|
21364
|
-
'*/*':
|
|
21585
|
+
application/json:
|
|
21365
21586
|
schema:
|
|
21366
21587
|
$ref: '#/components/schemas/MCPServer'
|
|
21367
21588
|
required: true
|
|
@@ -21442,19 +21663,13 @@ paths:
|
|
|
21442
21663
|
- ai-mentor
|
|
21443
21664
|
requestBody:
|
|
21444
21665
|
content:
|
|
21445
|
-
|
|
21446
|
-
schema:
|
|
21447
|
-
$ref: '#/components/schemas/MCPServer'
|
|
21448
|
-
application/scim+json:
|
|
21666
|
+
multipart/form-data:
|
|
21449
21667
|
schema:
|
|
21450
21668
|
$ref: '#/components/schemas/MCPServer'
|
|
21451
21669
|
application/x-www-form-urlencoded:
|
|
21452
21670
|
schema:
|
|
21453
21671
|
$ref: '#/components/schemas/MCPServer'
|
|
21454
|
-
|
|
21455
|
-
schema:
|
|
21456
|
-
$ref: '#/components/schemas/MCPServer'
|
|
21457
|
-
'*/*':
|
|
21672
|
+
application/json:
|
|
21458
21673
|
schema:
|
|
21459
21674
|
$ref: '#/components/schemas/MCPServer'
|
|
21460
21675
|
required: true
|
|
@@ -21497,19 +21712,13 @@ paths:
|
|
|
21497
21712
|
- ai-mentor
|
|
21498
21713
|
requestBody:
|
|
21499
21714
|
content:
|
|
21500
|
-
|
|
21501
|
-
schema:
|
|
21502
|
-
$ref: '#/components/schemas/PatchedMCPServer'
|
|
21503
|
-
application/scim+json:
|
|
21715
|
+
multipart/form-data:
|
|
21504
21716
|
schema:
|
|
21505
21717
|
$ref: '#/components/schemas/PatchedMCPServer'
|
|
21506
21718
|
application/x-www-form-urlencoded:
|
|
21507
21719
|
schema:
|
|
21508
21720
|
$ref: '#/components/schemas/PatchedMCPServer'
|
|
21509
|
-
|
|
21510
|
-
schema:
|
|
21511
|
-
$ref: '#/components/schemas/PatchedMCPServer'
|
|
21512
|
-
'*/*':
|
|
21721
|
+
application/json:
|
|
21513
21722
|
schema:
|
|
21514
21723
|
$ref: '#/components/schemas/PatchedMCPServer'
|
|
21515
21724
|
security:
|
|
@@ -25112,10 +25321,15 @@ paths:
|
|
|
25112
25321
|
|
|
25113
25322
|
A search query can be conducted to search through the prompts and reason for the moderation catch event.
|
|
25114
25323
|
parameters:
|
|
25324
|
+
- in: query
|
|
25325
|
+
name: end_time
|
|
25326
|
+
schema:
|
|
25327
|
+
type: string
|
|
25328
|
+
format: date-time
|
|
25115
25329
|
- in: query
|
|
25116
25330
|
name: mentor
|
|
25117
25331
|
schema:
|
|
25118
|
-
type:
|
|
25332
|
+
type: string
|
|
25119
25333
|
- name: ordering
|
|
25120
25334
|
required: false
|
|
25121
25335
|
in: query
|
|
@@ -25149,6 +25363,11 @@ paths:
|
|
|
25149
25363
|
description: A search term.
|
|
25150
25364
|
schema:
|
|
25151
25365
|
type: string
|
|
25366
|
+
- in: query
|
|
25367
|
+
name: start_time
|
|
25368
|
+
schema:
|
|
25369
|
+
type: string
|
|
25370
|
+
format: date-time
|
|
25152
25371
|
- in: query
|
|
25153
25372
|
name: target_system
|
|
25154
25373
|
schema:
|
|
@@ -27522,10 +27741,15 @@ paths:
|
|
|
27522
27741
|
|
|
27523
27742
|
A search query can be conducted to search through the prompts and reason for the moderation catch event.
|
|
27524
27743
|
parameters:
|
|
27744
|
+
- in: query
|
|
27745
|
+
name: end_time
|
|
27746
|
+
schema:
|
|
27747
|
+
type: string
|
|
27748
|
+
format: date-time
|
|
27525
27749
|
- in: query
|
|
27526
27750
|
name: mentor
|
|
27527
27751
|
schema:
|
|
27528
|
-
type:
|
|
27752
|
+
type: string
|
|
27529
27753
|
- name: ordering
|
|
27530
27754
|
required: false
|
|
27531
27755
|
in: query
|
|
@@ -27559,6 +27783,11 @@ paths:
|
|
|
27559
27783
|
description: A search term.
|
|
27560
27784
|
schema:
|
|
27561
27785
|
type: string
|
|
27786
|
+
- in: query
|
|
27787
|
+
name: start_time
|
|
27788
|
+
schema:
|
|
27789
|
+
type: string
|
|
27790
|
+
format: date-time
|
|
27562
27791
|
- in: query
|
|
27563
27792
|
name: target_system
|
|
27564
27793
|
schema:
|
|
@@ -32562,18 +32791,33 @@ paths:
|
|
|
32562
32791
|
/api/ai-search/mentors/:
|
|
32563
32792
|
get:
|
|
32564
32793
|
operationId: v2_global_mentor_search
|
|
32565
|
-
description: "\n Search and filter AI mentors with support for
|
|
32566
|
-
\ pagination, and detailed mentor information.\n This endpoint
|
|
32567
|
-
\ both anonymous and authenticated users with different access levels.\n\
|
|
32568
|
-
\ **Anonymous Users:**\n - Access to public mentors only (VIEWABLE_BY_ANYONE)\n\
|
|
32794
|
+
description: "\n Search and filter AI mentors with support for comprehensive\
|
|
32795
|
+
\ filtering, pagination, and detailed mentor information.\n This endpoint\
|
|
32796
|
+
\ supports both anonymous and authenticated users with different access levels.\n\
|
|
32797
|
+
\n **Anonymous Users:**\n - Access to public mentors only (VIEWABLE_BY_ANYONE)\n\
|
|
32569
32798
|
\ - Limited search capabilities\n - No personalization\n\n \
|
|
32570
32799
|
\ **Authenticated Users:**\n - Full access based on platform\
|
|
32571
32800
|
\ permissions (scoped to requested platform)\n - Personalized results\n\
|
|
32572
|
-
\ - Access to tenant-specific mentors\n\n
|
|
32573
|
-
\
|
|
32574
|
-
\
|
|
32575
|
-
\
|
|
32576
|
-
\
|
|
32801
|
+
\ - Access to tenant-specific mentors\n\n **Available Filters:**\n\
|
|
32802
|
+
\ - `query`: Search term to filter mentors by name or description\n\
|
|
32803
|
+
\ - `tenant`: Filter by tenant/organization platform key(s)\n \
|
|
32804
|
+
\ - `category`: Filter by mentor category (comma-separated)\n - `subjects`:\
|
|
32805
|
+
\ Filter by mentor subject (comma-separated)\n - `types`: Filter by\
|
|
32806
|
+
\ mentor type (comma-separated)\n - `llm`: Filter by LLM provider (comma-separated,\
|
|
32807
|
+
\ e.g., GPT-4, Claude)\n - `visibility`: Filter by visibility level\
|
|
32808
|
+
\ (comma-separated: viewable_by_anyone, viewable_by_tenant_students, viewable_by_tenant_admins)\n\
|
|
32809
|
+
\ - `created_by`: Filter mentors created by specific user (for personalized\
|
|
32810
|
+
\ search)\n - `include_main_public_mentors`: Include main tenant public\
|
|
32811
|
+
\ mentors\n\n **Facets:**\n The response includes facets with\
|
|
32812
|
+
\ aggregated counts for all filterable attributes:\n - categories,\
|
|
32813
|
+
\ subjects, types, llm_providers, visibility\n All facet values can\
|
|
32814
|
+
\ be used as filter parameters in subsequent requests.\n\n Notes:\n\
|
|
32815
|
+
\ - Detail view is removed; use the ibl_ai_mentor app for mentor details\n\
|
|
32816
|
+
\ - include_main_public_mentors=true shows only VIEWABLE_BY_ANYONE\
|
|
32817
|
+
\ mentors from the main tenant across tenants\n - For authenticated\
|
|
32818
|
+
\ requests, platform_key is required when username is provided\n -\
|
|
32819
|
+
\ Frontend uses `llm` parameter name (backend maps to `llm_provider` automatically)\n\
|
|
32820
|
+
\ "
|
|
32577
32821
|
summary: Search and filter AI mentors across the platform
|
|
32578
32822
|
parameters:
|
|
32579
32823
|
- in: query
|
|
@@ -32582,6 +32826,12 @@ paths:
|
|
|
32582
32826
|
type: string
|
|
32583
32827
|
minLength: 1
|
|
32584
32828
|
description: Mentor category filter
|
|
32829
|
+
- in: query
|
|
32830
|
+
name: created_by
|
|
32831
|
+
schema:
|
|
32832
|
+
type: string
|
|
32833
|
+
minLength: 1
|
|
32834
|
+
description: Filter mentors created by specific user (for personalized search)
|
|
32585
32835
|
- in: query
|
|
32586
32836
|
name: include_main_public_mentors
|
|
32587
32837
|
schema:
|
|
@@ -32597,7 +32847,7 @@ paths:
|
|
|
32597
32847
|
minimum: 1
|
|
32598
32848
|
description: Number of results per page
|
|
32599
32849
|
- in: query
|
|
32600
|
-
name:
|
|
32850
|
+
name: llm
|
|
32601
32851
|
schema:
|
|
32602
32852
|
type: string
|
|
32603
32853
|
minLength: 1
|
|
@@ -32621,12 +32871,31 @@ paths:
|
|
|
32621
32871
|
type: string
|
|
32622
32872
|
minLength: 1
|
|
32623
32873
|
description: Search query for mentors
|
|
32874
|
+
- in: query
|
|
32875
|
+
name: subjects
|
|
32876
|
+
schema:
|
|
32877
|
+
type: string
|
|
32878
|
+
minLength: 1
|
|
32879
|
+
description: Mentor subject filter
|
|
32624
32880
|
- in: query
|
|
32625
32881
|
name: tenant
|
|
32626
32882
|
schema:
|
|
32627
32883
|
type: string
|
|
32628
32884
|
minLength: 1
|
|
32629
32885
|
description: Tenant key(s) (CSV)
|
|
32886
|
+
- in: query
|
|
32887
|
+
name: types
|
|
32888
|
+
schema:
|
|
32889
|
+
type: string
|
|
32890
|
+
minLength: 1
|
|
32891
|
+
description: Mentor type filter
|
|
32892
|
+
- in: query
|
|
32893
|
+
name: visibility
|
|
32894
|
+
schema:
|
|
32895
|
+
type: string
|
|
32896
|
+
minLength: 1
|
|
32897
|
+
description: Mentor visibility filter (viewable_by_anyone, viewable_by_tenant_students,
|
|
32898
|
+
viewable_by_tenant_admins)
|
|
32630
32899
|
tags:
|
|
32631
32900
|
- ai-search
|
|
32632
32901
|
security:
|
|
@@ -32653,14 +32922,22 @@ paths:
|
|
|
32653
32922
|
username: john.doe
|
|
32654
32923
|
platform_key: example-university
|
|
32655
32924
|
query: data science
|
|
32925
|
+
category:
|
|
32926
|
+
- Computer Science
|
|
32927
|
+
subjects:
|
|
32928
|
+
- Mathematics
|
|
32929
|
+
- Physics
|
|
32930
|
+
types:
|
|
32931
|
+
- Academic
|
|
32656
32932
|
llm:
|
|
32657
32933
|
- GPT-4
|
|
32658
|
-
|
|
32659
|
-
-
|
|
32934
|
+
visibility:
|
|
32935
|
+
- viewable_by_anyone
|
|
32936
|
+
- viewable_by_tenant_students
|
|
32660
32937
|
limit: 20
|
|
32661
32938
|
summary: Authenticated user search
|
|
32662
32939
|
description: Search for data science mentors as an authenticated
|
|
32663
|
-
user
|
|
32940
|
+
user with multiple filters
|
|
32664
32941
|
description: ''
|
|
32665
32942
|
'400':
|
|
32666
32943
|
description: Bad request - invalid parameters
|
|
@@ -51731,15 +52008,28 @@ paths:
|
|
|
51731
52008
|
/api/core/rbac/groups/:
|
|
51732
52009
|
get:
|
|
51733
52010
|
operationId: core_rbac_groups_list
|
|
51734
|
-
description: Retrieve a list of RBAC groups. Can be filtered by platform_key
|
|
52011
|
+
description: Retrieve a list of RBAC groups. Can be filtered by platform_key,
|
|
52012
|
+
owner, name, username, or email. Use include_users to control response payload.
|
|
51735
52013
|
summary: List RBAC groups
|
|
51736
52014
|
parameters:
|
|
52015
|
+
- in: query
|
|
52016
|
+
name: email
|
|
52017
|
+
schema:
|
|
52018
|
+
type: string
|
|
52019
|
+
minLength: 1
|
|
52020
|
+
description: Filter groups by email (exact match, case-insensitive)
|
|
51737
52021
|
- in: query
|
|
51738
52022
|
name: include_users
|
|
51739
52023
|
schema:
|
|
51740
52024
|
type: boolean
|
|
51741
52025
|
default: true
|
|
51742
|
-
description: 'Include user information in response (default:
|
|
52026
|
+
description: 'Include user information in response (default: true)'
|
|
52027
|
+
- in: query
|
|
52028
|
+
name: name
|
|
52029
|
+
schema:
|
|
52030
|
+
type: string
|
|
52031
|
+
minLength: 1
|
|
52032
|
+
description: Filter groups by name (case-insensitive partial match)
|
|
51743
52033
|
- in: query
|
|
51744
52034
|
name: owner
|
|
51745
52035
|
schema:
|
|
@@ -51764,6 +52054,12 @@ paths:
|
|
|
51764
52054
|
type: string
|
|
51765
52055
|
minLength: 1
|
|
51766
52056
|
description: Filter groups by platform key
|
|
52057
|
+
- in: query
|
|
52058
|
+
name: username
|
|
52059
|
+
schema:
|
|
52060
|
+
type: string
|
|
52061
|
+
minLength: 1
|
|
52062
|
+
description: Filter groups by username (exact match, case-insensitive)
|
|
51767
52063
|
tags:
|
|
51768
52064
|
- core
|
|
51769
52065
|
security:
|
|
@@ -51775,6 +52071,8 @@ paths:
|
|
|
51775
52071
|
schema:
|
|
51776
52072
|
$ref: '#/components/schemas/PaginatedRbacGroupList'
|
|
51777
52073
|
description: ''
|
|
52074
|
+
'403':
|
|
52075
|
+
description: Permission denied - insufficient RBAC permissions
|
|
51778
52076
|
post:
|
|
51779
52077
|
operationId: core_rbac_groups_create
|
|
51780
52078
|
description: Create a new RBAC group for a platform. Users can be assigned during
|
|
@@ -51814,6 +52112,8 @@ paths:
|
|
|
51814
52112
|
Invalid input data. Common errors include:
|
|
51815
52113
|
- Users do not belong to the specified platform
|
|
51816
52114
|
- Invalid user IDs provided
|
|
52115
|
+
'403':
|
|
52116
|
+
description: Permission denied - insufficient RBAC permissions
|
|
51817
52117
|
/api/core/rbac/groups/{id}/:
|
|
51818
52118
|
get:
|
|
51819
52119
|
operationId: core_rbac_groups_retrieve
|
|
@@ -51837,12 +52137,14 @@ paths:
|
|
|
51837
52137
|
schema:
|
|
51838
52138
|
$ref: '#/components/schemas/RbacGroup'
|
|
51839
52139
|
description: ''
|
|
52140
|
+
'403':
|
|
52141
|
+
description: Permission denied - insufficient RBAC permissions
|
|
51840
52142
|
'404':
|
|
51841
52143
|
description: Group not found
|
|
51842
52144
|
put:
|
|
51843
52145
|
operationId: core_rbac_groups_update
|
|
51844
52146
|
description: Update an existing RBAC group. Platform validation applies for
|
|
51845
|
-
user assignments.
|
|
52147
|
+
user assignments. Cannot update internal system groups.
|
|
51846
52148
|
summary: Update RBAC group
|
|
51847
52149
|
parameters:
|
|
51848
52150
|
- in: path
|
|
@@ -51885,12 +52187,15 @@ paths:
|
|
|
51885
52187
|
Invalid input data. Common errors include:
|
|
51886
52188
|
- Users do not belong to the specified platform
|
|
51887
52189
|
- Invalid user IDs provided
|
|
52190
|
+
'403':
|
|
52191
|
+
description: Permission denied - insufficient RBAC permissions or attempting
|
|
52192
|
+
to edit internal system group
|
|
51888
52193
|
'404':
|
|
51889
52194
|
description: Group not found
|
|
51890
52195
|
patch:
|
|
51891
52196
|
operationId: core_rbac_groups_partial_update
|
|
51892
52197
|
description: Partially update an existing RBAC group. Platform validation applies
|
|
51893
|
-
for user assignments.
|
|
52198
|
+
for user assignments. Cannot update internal system groups.
|
|
51894
52199
|
summary: Partially update RBAC group
|
|
51895
52200
|
parameters:
|
|
51896
52201
|
- in: path
|
|
@@ -51932,11 +52237,15 @@ paths:
|
|
|
51932
52237
|
Invalid input data. Common errors include:
|
|
51933
52238
|
- Users do not belong to the specified platform
|
|
51934
52239
|
- Invalid user IDs provided
|
|
52240
|
+
'403':
|
|
52241
|
+
description: Permission denied - insufficient RBAC permissions or attempting
|
|
52242
|
+
to edit internal system group
|
|
51935
52243
|
'404':
|
|
51936
52244
|
description: Group not found
|
|
51937
52245
|
delete:
|
|
51938
52246
|
operationId: core_rbac_groups_destroy
|
|
51939
52247
|
description: Delete an RBAC group and all associated group role assignments.
|
|
52248
|
+
Cannot delete internal system groups.
|
|
51940
52249
|
summary: Delete RBAC group
|
|
51941
52250
|
parameters:
|
|
51942
52251
|
- in: path
|
|
@@ -51959,6 +52268,9 @@ paths:
|
|
|
51959
52268
|
responses:
|
|
51960
52269
|
'204':
|
|
51961
52270
|
description: Group deleted successfully
|
|
52271
|
+
'403':
|
|
52272
|
+
description: Permission denied - insufficient RBAC permissions or attempting
|
|
52273
|
+
to delete internal system group
|
|
51962
52274
|
'404':
|
|
51963
52275
|
description: Group not found
|
|
51964
52276
|
/api/core/rbac/mentor-access/:
|
|
@@ -52088,10 +52400,42 @@ paths:
|
|
|
52088
52400
|
/api/core/rbac/policies/:
|
|
52089
52401
|
get:
|
|
52090
52402
|
operationId: core_rbac_policies_list
|
|
52091
|
-
description: Retrieve a list of RBAC policies. Can be filtered by platform_key
|
|
52092
|
-
or
|
|
52403
|
+
description: Retrieve a list of RBAC policies. Can be filtered by platform_key,
|
|
52404
|
+
role_id, name, username, email, or group. Use include_users and include_groups
|
|
52405
|
+
to control response payload.
|
|
52093
52406
|
summary: List RBAC policies
|
|
52094
52407
|
parameters:
|
|
52408
|
+
- in: query
|
|
52409
|
+
name: email
|
|
52410
|
+
schema:
|
|
52411
|
+
type: string
|
|
52412
|
+
minLength: 1
|
|
52413
|
+
description: Filter policies by email (exact match, case-insensitive) - includes
|
|
52414
|
+
users in policy or in policy's groups
|
|
52415
|
+
- in: query
|
|
52416
|
+
name: group
|
|
52417
|
+
schema:
|
|
52418
|
+
type: string
|
|
52419
|
+
minLength: 1
|
|
52420
|
+
description: Filter policies by group name (exact match, case-insensitive)
|
|
52421
|
+
- in: query
|
|
52422
|
+
name: include_groups
|
|
52423
|
+
schema:
|
|
52424
|
+
type: boolean
|
|
52425
|
+
default: true
|
|
52426
|
+
description: 'Include group information in response (default: true)'
|
|
52427
|
+
- in: query
|
|
52428
|
+
name: include_users
|
|
52429
|
+
schema:
|
|
52430
|
+
type: boolean
|
|
52431
|
+
default: true
|
|
52432
|
+
description: 'Include user information in response (default: true)'
|
|
52433
|
+
- in: query
|
|
52434
|
+
name: name
|
|
52435
|
+
schema:
|
|
52436
|
+
type: string
|
|
52437
|
+
minLength: 1
|
|
52438
|
+
description: Filter policies by name (case-insensitive partial match)
|
|
52095
52439
|
- name: page
|
|
52096
52440
|
required: false
|
|
52097
52441
|
in: query
|
|
@@ -52115,6 +52459,13 @@ paths:
|
|
|
52115
52459
|
schema:
|
|
52116
52460
|
type: integer
|
|
52117
52461
|
description: Filter policies by role ID
|
|
52462
|
+
- in: query
|
|
52463
|
+
name: username
|
|
52464
|
+
schema:
|
|
52465
|
+
type: string
|
|
52466
|
+
minLength: 1
|
|
52467
|
+
description: Filter policies by username (exact match, case-insensitive) -
|
|
52468
|
+
includes users in policy or in policy's groups
|
|
52118
52469
|
tags:
|
|
52119
52470
|
- core
|
|
52120
52471
|
security:
|
|
@@ -52126,6 +52477,8 @@ paths:
|
|
|
52126
52477
|
schema:
|
|
52127
52478
|
$ref: '#/components/schemas/PaginatedRbacPolicyList'
|
|
52128
52479
|
description: ''
|
|
52480
|
+
'403':
|
|
52481
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52129
52482
|
post:
|
|
52130
52483
|
operationId: core_rbac_policies_create
|
|
52131
52484
|
description: Create a new RBAC policy that defines resource access for a role
|
|
@@ -52162,6 +52515,8 @@ paths:
|
|
|
52162
52515
|
'400':
|
|
52163
52516
|
description: 'Invalid input data. Common errors include: invalid user/group
|
|
52164
52517
|
IDs, users/groups not belonging to the platform, or invalid resource paths.'
|
|
52518
|
+
'403':
|
|
52519
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52165
52520
|
/api/core/rbac/policies/{id}/:
|
|
52166
52521
|
get:
|
|
52167
52522
|
operationId: core_rbac_policies_retrieve
|
|
@@ -52186,6 +52541,8 @@ paths:
|
|
|
52186
52541
|
schema:
|
|
52187
52542
|
$ref: '#/components/schemas/RbacPolicy'
|
|
52188
52543
|
description: ''
|
|
52544
|
+
'403':
|
|
52545
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52189
52546
|
'404':
|
|
52190
52547
|
description: Policy not found
|
|
52191
52548
|
put:
|
|
@@ -52231,6 +52588,8 @@ paths:
|
|
|
52231
52588
|
'400':
|
|
52232
52589
|
description: 'Invalid input data. Common errors include: invalid user/group
|
|
52233
52590
|
IDs, users/groups not belonging to the platform, or invalid resource paths.'
|
|
52591
|
+
'403':
|
|
52592
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52234
52593
|
'404':
|
|
52235
52594
|
description: Policy not found
|
|
52236
52595
|
patch:
|
|
@@ -52276,6 +52635,8 @@ paths:
|
|
|
52276
52635
|
'400':
|
|
52277
52636
|
description: 'Invalid input data. Common errors include: invalid user/group
|
|
52278
52637
|
IDs, users/groups not belonging to the platform, or invalid resource paths.'
|
|
52638
|
+
'403':
|
|
52639
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52279
52640
|
'404':
|
|
52280
52641
|
description: Policy not found
|
|
52281
52642
|
delete:
|
|
@@ -52303,14 +52664,23 @@ paths:
|
|
|
52303
52664
|
responses:
|
|
52304
52665
|
'204':
|
|
52305
52666
|
description: Policy deleted successfully
|
|
52667
|
+
'403':
|
|
52668
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52306
52669
|
'404':
|
|
52307
52670
|
description: Policy not found
|
|
52308
52671
|
/api/core/rbac/roles/:
|
|
52309
52672
|
get:
|
|
52310
52673
|
operationId: core_rbac_roles_list
|
|
52311
|
-
description: Retrieve a list of RBAC roles. Can be filtered by platform_key
|
|
52674
|
+
description: Retrieve a list of RBAC roles. Can be filtered by platform_key
|
|
52675
|
+
and name.
|
|
52312
52676
|
summary: List RBAC roles
|
|
52313
52677
|
parameters:
|
|
52678
|
+
- in: query
|
|
52679
|
+
name: name
|
|
52680
|
+
schema:
|
|
52681
|
+
type: string
|
|
52682
|
+
minLength: 1
|
|
52683
|
+
description: Filter roles by name (case-insensitive partial match)
|
|
52314
52684
|
- name: page
|
|
52315
52685
|
required: false
|
|
52316
52686
|
in: query
|
|
@@ -52340,6 +52710,8 @@ paths:
|
|
|
52340
52710
|
schema:
|
|
52341
52711
|
$ref: '#/components/schemas/PaginatedRbacRoleList'
|
|
52342
52712
|
description: ''
|
|
52713
|
+
'403':
|
|
52714
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52343
52715
|
post:
|
|
52344
52716
|
operationId: core_rbac_roles_create
|
|
52345
52717
|
description: Create a new RBAC role for a platform.
|
|
@@ -52375,6 +52747,8 @@ paths:
|
|
|
52375
52747
|
description: ''
|
|
52376
52748
|
'400':
|
|
52377
52749
|
description: Invalid input data
|
|
52750
|
+
'403':
|
|
52751
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52378
52752
|
/api/core/rbac/roles/{id}/:
|
|
52379
52753
|
get:
|
|
52380
52754
|
operationId: core_rbac_roles_retrieve
|
|
@@ -52398,6 +52772,8 @@ paths:
|
|
|
52398
52772
|
schema:
|
|
52399
52773
|
$ref: '#/components/schemas/RbacRole'
|
|
52400
52774
|
description: ''
|
|
52775
|
+
'403':
|
|
52776
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52401
52777
|
'404':
|
|
52402
52778
|
description: Role not found
|
|
52403
52779
|
put:
|
|
@@ -52442,6 +52818,8 @@ paths:
|
|
|
52442
52818
|
description: ''
|
|
52443
52819
|
'400':
|
|
52444
52820
|
description: Invalid input data
|
|
52821
|
+
'403':
|
|
52822
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52445
52823
|
'404':
|
|
52446
52824
|
description: Role not found
|
|
52447
52825
|
patch:
|
|
@@ -52485,11 +52863,14 @@ paths:
|
|
|
52485
52863
|
description: ''
|
|
52486
52864
|
'400':
|
|
52487
52865
|
description: Invalid input data
|
|
52866
|
+
'403':
|
|
52867
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52488
52868
|
'404':
|
|
52489
52869
|
description: Role not found
|
|
52490
52870
|
delete:
|
|
52491
52871
|
operationId: core_rbac_roles_destroy
|
|
52492
|
-
description: Delete an RBAC role.
|
|
52872
|
+
description: 'Delete an RBAC role. WARNING: Deleting a role will remove all
|
|
52873
|
+
policies referencing it.'
|
|
52493
52874
|
summary: Delete RBAC role
|
|
52494
52875
|
parameters:
|
|
52495
52876
|
- in: path
|
|
@@ -52512,6 +52893,8 @@ paths:
|
|
|
52512
52893
|
responses:
|
|
52513
52894
|
'204':
|
|
52514
52895
|
description: Role deleted successfully
|
|
52896
|
+
'403':
|
|
52897
|
+
description: Permission denied - insufficient RBAC permissions
|
|
52515
52898
|
'404':
|
|
52516
52899
|
description: Role not found
|
|
52517
52900
|
/api/core/rbac/student-llm-access/set/:
|
|
@@ -68241,6 +68624,16 @@ components:
|
|
|
68241
68624
|
required:
|
|
68242
68625
|
- expires
|
|
68243
68626
|
- token
|
|
68627
|
+
AuthTypeEnum:
|
|
68628
|
+
enum:
|
|
68629
|
+
- none
|
|
68630
|
+
- token
|
|
68631
|
+
- oauth2
|
|
68632
|
+
type: string
|
|
68633
|
+
description: |-
|
|
68634
|
+
* `none` - None
|
|
68635
|
+
* `token` - Token
|
|
68636
|
+
* `oauth2` - Oauth2
|
|
68244
68637
|
AutoMemoryPrompt:
|
|
68245
68638
|
type: object
|
|
68246
68639
|
properties:
|
|
@@ -68756,7 +69149,8 @@ components:
|
|
|
68756
69149
|
type: integer
|
|
68757
69150
|
readOnly: true
|
|
68758
69151
|
mentor:
|
|
68759
|
-
type:
|
|
69152
|
+
type: string
|
|
69153
|
+
format: uuid
|
|
68760
69154
|
mode:
|
|
68761
69155
|
$ref: '#/components/schemas/CallConfigurationModeEnum'
|
|
68762
69156
|
tts_provider:
|
|
@@ -68787,10 +69181,8 @@ components:
|
|
|
68787
69181
|
type: string
|
|
68788
69182
|
readOnly: true
|
|
68789
69183
|
required:
|
|
68790
|
-
- google_voice_id
|
|
68791
69184
|
- id
|
|
68792
69185
|
- mentor
|
|
68793
|
-
- openai_voice_id
|
|
68794
69186
|
- platform_key
|
|
68795
69187
|
CallConfigurationModeEnum:
|
|
68796
69188
|
enum:
|
|
@@ -74141,18 +74533,45 @@ components:
|
|
|
74141
74533
|
name:
|
|
74142
74534
|
type: string
|
|
74143
74535
|
maxLength: 255
|
|
74536
|
+
description:
|
|
74537
|
+
type: string
|
|
74538
|
+
description: A description of the MCP server.
|
|
74144
74539
|
url:
|
|
74145
74540
|
type: string
|
|
74146
74541
|
format: uri
|
|
74147
74542
|
description: The url of the MCP server.
|
|
74148
74543
|
maxLength: 200
|
|
74544
|
+
image:
|
|
74545
|
+
type: string
|
|
74546
|
+
format: uri
|
|
74547
|
+
nullable: true
|
|
74149
74548
|
transport:
|
|
74150
74549
|
$ref: '#/components/schemas/TransportEnum'
|
|
74550
|
+
credentials:
|
|
74551
|
+
type: string
|
|
74552
|
+
description: 'Authorization credentials to uauthenticate to the mcp server.
|
|
74553
|
+
if provided takes priority over connected service and headers. Token here
|
|
74554
|
+
must be the full authorization value. For example: `<scheme> <credentials>`'
|
|
74151
74555
|
extra_headers:
|
|
74152
74556
|
description: Headers to send to the MCP server. Useful for authentication,
|
|
74153
74557
|
platform_key:
|
|
74154
74558
|
type: string
|
|
74155
74559
|
readOnly: true
|
|
74560
|
+
is_featured:
|
|
74561
|
+
type: boolean
|
|
74562
|
+
description: Featured mcp servers will be accessible to all other tenants.
|
|
74563
|
+
auth_type:
|
|
74564
|
+
allOf:
|
|
74565
|
+
- $ref: '#/components/schemas/AuthTypeEnum'
|
|
74566
|
+
description: |-
|
|
74567
|
+
The type of authentication to use for the MCP server.
|
|
74568
|
+
|
|
74569
|
+
* `none` - None
|
|
74570
|
+
* `token` - Token
|
|
74571
|
+
* `oauth2` - Oauth2
|
|
74572
|
+
is_enabled:
|
|
74573
|
+
type: boolean
|
|
74574
|
+
description: Whether the MCP server is enabled or not.
|
|
74156
74575
|
created_at:
|
|
74157
74576
|
type: string
|
|
74158
74577
|
format: date-time
|
|
@@ -76447,6 +76866,9 @@ components:
|
|
|
76447
76866
|
username:
|
|
76448
76867
|
type: string
|
|
76449
76868
|
maxLength: 200
|
|
76869
|
+
email:
|
|
76870
|
+
type: string
|
|
76871
|
+
readOnly: true
|
|
76450
76872
|
platform_key:
|
|
76451
76873
|
type: string
|
|
76452
76874
|
maxLength: 200
|
|
@@ -76464,6 +76886,7 @@ components:
|
|
|
76464
76886
|
readOnly: true
|
|
76465
76887
|
required:
|
|
76466
76888
|
- date_created
|
|
76889
|
+
- email
|
|
76467
76890
|
- id
|
|
76468
76891
|
- mentor
|
|
76469
76892
|
- platform_key
|
|
@@ -76791,6 +77214,45 @@ components:
|
|
|
76791
77214
|
available_context:
|
|
76792
77215
|
type: string
|
|
76793
77216
|
readOnly: true
|
|
77217
|
+
proactive_prompt_message:
|
|
77218
|
+
type: string
|
|
77219
|
+
nullable: true
|
|
77220
|
+
description: Default prompt message for AI mentor notifications
|
|
77221
|
+
periodic_config:
|
|
77222
|
+
type: string
|
|
77223
|
+
readOnly: true
|
|
77224
|
+
periodic_learner_scope:
|
|
77225
|
+
allOf:
|
|
77226
|
+
- $ref: '#/components/schemas/PeriodicLearnerScopeEnum'
|
|
77227
|
+
writeOnly: true
|
|
77228
|
+
periodic_report_period_days:
|
|
77229
|
+
type: integer
|
|
77230
|
+
maximum: 365
|
|
77231
|
+
minimum: 1
|
|
77232
|
+
writeOnly: true
|
|
77233
|
+
periodic_frequency:
|
|
77234
|
+
allOf:
|
|
77235
|
+
- $ref: '#/components/schemas/PeriodicFrequencyEnum'
|
|
77236
|
+
writeOnly: true
|
|
77237
|
+
periodic_custom_interval_days:
|
|
77238
|
+
type: integer
|
|
77239
|
+
maximum: 365
|
|
77240
|
+
minimum: 1
|
|
77241
|
+
writeOnly: true
|
|
77242
|
+
periodic_execution_time:
|
|
77243
|
+
type: string
|
|
77244
|
+
writeOnly: true
|
|
77245
|
+
periodic_timezone:
|
|
77246
|
+
type: string
|
|
77247
|
+
writeOnly: true
|
|
77248
|
+
periodic_mentors:
|
|
77249
|
+
type: array
|
|
77250
|
+
items:
|
|
77251
|
+
type: object
|
|
77252
|
+
additionalProperties: {}
|
|
77253
|
+
writeOnly: true
|
|
77254
|
+
description: 'List of mentor configurations: [{"unique_id": "uuid", "prompt":
|
|
77255
|
+
"..."}]'
|
|
76794
77256
|
created_at:
|
|
76795
77257
|
type: string
|
|
76796
77258
|
format: date-time
|
|
@@ -76808,6 +77270,7 @@ components:
|
|
|
76808
77270
|
- id
|
|
76809
77271
|
- is_enabled
|
|
76810
77272
|
- is_inherited
|
|
77273
|
+
- periodic_config
|
|
76811
77274
|
- source_platform
|
|
76812
77275
|
- spas_detail
|
|
76813
77276
|
- type
|
|
@@ -78650,6 +79113,29 @@ components:
|
|
|
78650
79113
|
type: array
|
|
78651
79114
|
items:
|
|
78652
79115
|
$ref: '#/components/schemas/UserMemory'
|
|
79116
|
+
PaginatedVeoVideoListList:
|
|
79117
|
+
type: object
|
|
79118
|
+
required:
|
|
79119
|
+
- count
|
|
79120
|
+
- results
|
|
79121
|
+
properties:
|
|
79122
|
+
count:
|
|
79123
|
+
type: integer
|
|
79124
|
+
example: 123
|
|
79125
|
+
next:
|
|
79126
|
+
type: string
|
|
79127
|
+
nullable: true
|
|
79128
|
+
format: uri
|
|
79129
|
+
example: http://api.example.org/accounts/?page=4
|
|
79130
|
+
previous:
|
|
79131
|
+
type: string
|
|
79132
|
+
nullable: true
|
|
79133
|
+
format: uri
|
|
79134
|
+
example: http://api.example.org/accounts/?page=2
|
|
79135
|
+
results:
|
|
79136
|
+
type: array
|
|
79137
|
+
items:
|
|
79138
|
+
$ref: '#/components/schemas/VeoVideoList'
|
|
78653
79139
|
PaginatedVoiceList:
|
|
78654
79140
|
type: object
|
|
78655
79141
|
required:
|
|
@@ -78811,7 +79297,8 @@ components:
|
|
|
78811
79297
|
type: integer
|
|
78812
79298
|
readOnly: true
|
|
78813
79299
|
mentor:
|
|
78814
|
-
type:
|
|
79300
|
+
type: string
|
|
79301
|
+
format: uuid
|
|
78815
79302
|
mode:
|
|
78816
79303
|
$ref: '#/components/schemas/CallConfigurationModeEnum'
|
|
78817
79304
|
tts_provider:
|
|
@@ -79147,18 +79634,45 @@ components:
|
|
|
79147
79634
|
name:
|
|
79148
79635
|
type: string
|
|
79149
79636
|
maxLength: 255
|
|
79637
|
+
description:
|
|
79638
|
+
type: string
|
|
79639
|
+
description: A description of the MCP server.
|
|
79150
79640
|
url:
|
|
79151
79641
|
type: string
|
|
79152
79642
|
format: uri
|
|
79153
79643
|
description: The url of the MCP server.
|
|
79154
79644
|
maxLength: 200
|
|
79645
|
+
image:
|
|
79646
|
+
type: string
|
|
79647
|
+
format: uri
|
|
79648
|
+
nullable: true
|
|
79155
79649
|
transport:
|
|
79156
79650
|
$ref: '#/components/schemas/TransportEnum'
|
|
79651
|
+
credentials:
|
|
79652
|
+
type: string
|
|
79653
|
+
description: 'Authorization credentials to uauthenticate to the mcp server.
|
|
79654
|
+
if provided takes priority over connected service and headers. Token here
|
|
79655
|
+
must be the full authorization value. For example: `<scheme> <credentials>`'
|
|
79157
79656
|
extra_headers:
|
|
79158
79657
|
description: Headers to send to the MCP server. Useful for authentication,
|
|
79159
79658
|
platform_key:
|
|
79160
79659
|
type: string
|
|
79161
79660
|
readOnly: true
|
|
79661
|
+
is_featured:
|
|
79662
|
+
type: boolean
|
|
79663
|
+
description: Featured mcp servers will be accessible to all other tenants.
|
|
79664
|
+
auth_type:
|
|
79665
|
+
allOf:
|
|
79666
|
+
- $ref: '#/components/schemas/AuthTypeEnum'
|
|
79667
|
+
description: |-
|
|
79668
|
+
The type of authentication to use for the MCP server.
|
|
79669
|
+
|
|
79670
|
+
* `none` - None
|
|
79671
|
+
* `token` - Token
|
|
79672
|
+
* `oauth2` - Oauth2
|
|
79673
|
+
is_enabled:
|
|
79674
|
+
type: boolean
|
|
79675
|
+
description: Whether the MCP server is enabled or not.
|
|
79162
79676
|
created_at:
|
|
79163
79677
|
type: string
|
|
79164
79678
|
format: date-time
|
|
@@ -79574,6 +80088,45 @@ components:
|
|
|
79574
80088
|
available_context:
|
|
79575
80089
|
type: string
|
|
79576
80090
|
readOnly: true
|
|
80091
|
+
proactive_prompt_message:
|
|
80092
|
+
type: string
|
|
80093
|
+
nullable: true
|
|
80094
|
+
description: Default prompt message for AI mentor notifications
|
|
80095
|
+
periodic_config:
|
|
80096
|
+
type: string
|
|
80097
|
+
readOnly: true
|
|
80098
|
+
periodic_learner_scope:
|
|
80099
|
+
allOf:
|
|
80100
|
+
- $ref: '#/components/schemas/PeriodicLearnerScopeEnum'
|
|
80101
|
+
writeOnly: true
|
|
80102
|
+
periodic_report_period_days:
|
|
80103
|
+
type: integer
|
|
80104
|
+
maximum: 365
|
|
80105
|
+
minimum: 1
|
|
80106
|
+
writeOnly: true
|
|
80107
|
+
periodic_frequency:
|
|
80108
|
+
allOf:
|
|
80109
|
+
- $ref: '#/components/schemas/PeriodicFrequencyEnum'
|
|
80110
|
+
writeOnly: true
|
|
80111
|
+
periodic_custom_interval_days:
|
|
80112
|
+
type: integer
|
|
80113
|
+
maximum: 365
|
|
80114
|
+
minimum: 1
|
|
80115
|
+
writeOnly: true
|
|
80116
|
+
periodic_execution_time:
|
|
80117
|
+
type: string
|
|
80118
|
+
writeOnly: true
|
|
80119
|
+
periodic_timezone:
|
|
80120
|
+
type: string
|
|
80121
|
+
writeOnly: true
|
|
80122
|
+
periodic_mentors:
|
|
80123
|
+
type: array
|
|
80124
|
+
items:
|
|
80125
|
+
type: object
|
|
80126
|
+
additionalProperties: {}
|
|
80127
|
+
writeOnly: true
|
|
80128
|
+
description: 'List of mentor configurations: [{"unique_id": "uuid", "prompt":
|
|
80129
|
+
"..."}]'
|
|
79577
80130
|
created_at:
|
|
79578
80131
|
type: string
|
|
79579
80132
|
format: date-time
|
|
@@ -79905,6 +80458,11 @@ components:
|
|
|
79905
80458
|
type: integer
|
|
79906
80459
|
writeOnly: true
|
|
79907
80460
|
description: List of user IDs to remove from this group
|
|
80461
|
+
is_internal:
|
|
80462
|
+
type: boolean
|
|
80463
|
+
readOnly: true
|
|
80464
|
+
description: When True, this group is internal to the system and cannot
|
|
80465
|
+
be viewed or modified by tenants via API endpoints.
|
|
79908
80466
|
PatchedRbacPolicy:
|
|
79909
80467
|
type: object
|
|
79910
80468
|
description: Serializer for policies.
|
|
@@ -79974,6 +80532,11 @@ components:
|
|
|
79974
80532
|
type: integer
|
|
79975
80533
|
writeOnly: true
|
|
79976
80534
|
description: List of group IDs to remove from this Policy
|
|
80535
|
+
is_internal:
|
|
80536
|
+
type: boolean
|
|
80537
|
+
readOnly: true
|
|
80538
|
+
description: When True, this policy is internal to the system and cannot
|
|
80539
|
+
be viewed or modified by tenants via API endpoints.
|
|
79977
80540
|
PatchedRbacRole:
|
|
79978
80541
|
type: object
|
|
79979
80542
|
description: Serializer for roles.
|
|
@@ -80005,6 +80568,11 @@ components:
|
|
|
80005
80568
|
type: string
|
|
80006
80569
|
description: List of data actions/permissions this role can perform for
|
|
80007
80570
|
field-level access (e.g., ['Ibl.Mentor/Settings/name/read', 'Ibl.Mentor/Settings/email/write'])
|
|
80571
|
+
is_internal:
|
|
80572
|
+
type: boolean
|
|
80573
|
+
readOnly: true
|
|
80574
|
+
description: When True, this role is internal to the system and cannot be
|
|
80575
|
+
viewed or modified by tenants via API endpoints.
|
|
80008
80576
|
PatchedSCIMGroup:
|
|
80009
80577
|
type: object
|
|
80010
80578
|
description: SCIM group serializer for RBAC group management
|
|
@@ -81257,6 +81825,26 @@ components:
|
|
|
81257
81825
|
- running_tasks
|
|
81258
81826
|
- succeeded_tasks
|
|
81259
81827
|
- total_tasks
|
|
81828
|
+
PeriodicFrequencyEnum:
|
|
81829
|
+
enum:
|
|
81830
|
+
- DAILY
|
|
81831
|
+
- WEEKLY
|
|
81832
|
+
- MONTHLY
|
|
81833
|
+
- CUSTOM
|
|
81834
|
+
type: string
|
|
81835
|
+
description: |-
|
|
81836
|
+
* `DAILY` - DAILY
|
|
81837
|
+
* `WEEKLY` - WEEKLY
|
|
81838
|
+
* `MONTHLY` - MONTHLY
|
|
81839
|
+
* `CUSTOM` - CUSTOM
|
|
81840
|
+
PeriodicLearnerScopeEnum:
|
|
81841
|
+
enum:
|
|
81842
|
+
- ACTIVE_LEARNERS
|
|
81843
|
+
- ALL_LEARNERS
|
|
81844
|
+
type: string
|
|
81845
|
+
description: |-
|
|
81846
|
+
* `ACTIVE_LEARNERS` - ACTIVE_LEARNERS
|
|
81847
|
+
* `ALL_LEARNERS` - ALL_LEARNERS
|
|
81260
81848
|
PeriodicTask:
|
|
81261
81849
|
type: object
|
|
81262
81850
|
properties:
|
|
@@ -84493,8 +85081,14 @@ components:
|
|
|
84493
85081
|
type: integer
|
|
84494
85082
|
writeOnly: true
|
|
84495
85083
|
description: List of user IDs to remove from this group
|
|
85084
|
+
is_internal:
|
|
85085
|
+
type: boolean
|
|
85086
|
+
readOnly: true
|
|
85087
|
+
description: When True, this group is internal to the system and cannot
|
|
85088
|
+
be viewed or modified by tenants via API endpoints.
|
|
84496
85089
|
required:
|
|
84497
85090
|
- id
|
|
85091
|
+
- is_internal
|
|
84498
85092
|
- owner
|
|
84499
85093
|
- platform
|
|
84500
85094
|
- platform_key
|
|
@@ -84588,9 +85182,15 @@ components:
|
|
|
84588
85182
|
type: integer
|
|
84589
85183
|
writeOnly: true
|
|
84590
85184
|
description: List of group IDs to remove from this Policy
|
|
85185
|
+
is_internal:
|
|
85186
|
+
type: boolean
|
|
85187
|
+
readOnly: true
|
|
85188
|
+
description: When True, this policy is internal to the system and cannot
|
|
85189
|
+
be viewed or modified by tenants via API endpoints.
|
|
84591
85190
|
required:
|
|
84592
85191
|
- groups
|
|
84593
85192
|
- id
|
|
85193
|
+
- is_internal
|
|
84594
85194
|
- platform
|
|
84595
85195
|
- platform_key
|
|
84596
85196
|
- resources
|
|
@@ -84652,8 +85252,14 @@ components:
|
|
|
84652
85252
|
type: string
|
|
84653
85253
|
description: List of data actions/permissions this role can perform for
|
|
84654
85254
|
field-level access (e.g., ['Ibl.Mentor/Settings/name/read', 'Ibl.Mentor/Settings/email/write'])
|
|
85255
|
+
is_internal:
|
|
85256
|
+
type: boolean
|
|
85257
|
+
readOnly: true
|
|
85258
|
+
description: When True, this role is internal to the system and cannot be
|
|
85259
|
+
viewed or modified by tenants via API endpoints.
|
|
84655
85260
|
required:
|
|
84656
85261
|
- id
|
|
85262
|
+
- is_internal
|
|
84657
85263
|
- name
|
|
84658
85264
|
- platform
|
|
84659
85265
|
- platform_key
|
|
@@ -84670,6 +85276,12 @@ components:
|
|
|
84670
85276
|
nullable: true
|
|
84671
85277
|
description: edX username
|
|
84672
85278
|
maxLength: 100
|
|
85279
|
+
email:
|
|
85280
|
+
type: string
|
|
85281
|
+
format: email
|
|
85282
|
+
nullable: true
|
|
85283
|
+
description: edX email
|
|
85284
|
+
maxLength: 254
|
|
84673
85285
|
required:
|
|
84674
85286
|
- id
|
|
84675
85287
|
RecentlyAccessedMentor:
|
|
@@ -89998,6 +90610,73 @@ components:
|
|
|
89998
90610
|
default: gpt-4o-mini
|
|
89999
90611
|
required:
|
|
90000
90612
|
- snippet
|
|
90613
|
+
VeoVideoDetail:
|
|
90614
|
+
type: object
|
|
90615
|
+
properties:
|
|
90616
|
+
name:
|
|
90617
|
+
type: string
|
|
90618
|
+
maxLength: 1024
|
|
90619
|
+
data:
|
|
90620
|
+
nullable: true
|
|
90621
|
+
id:
|
|
90622
|
+
type: integer
|
|
90623
|
+
readOnly: true
|
|
90624
|
+
video_file:
|
|
90625
|
+
type: string
|
|
90626
|
+
nullable: true
|
|
90627
|
+
readOnly: true
|
|
90628
|
+
generation_status:
|
|
90629
|
+
type: string
|
|
90630
|
+
readOnly: true
|
|
90631
|
+
prompt_text:
|
|
90632
|
+
type: string
|
|
90633
|
+
nullable: true
|
|
90634
|
+
prompt_image:
|
|
90635
|
+
type: string
|
|
90636
|
+
nullable: true
|
|
90637
|
+
readOnly: true
|
|
90638
|
+
thumbnail_image:
|
|
90639
|
+
type: string
|
|
90640
|
+
nullable: true
|
|
90641
|
+
readOnly: true
|
|
90642
|
+
required:
|
|
90643
|
+
- generation_status
|
|
90644
|
+
- id
|
|
90645
|
+
- prompt_image
|
|
90646
|
+
- thumbnail_image
|
|
90647
|
+
- video_file
|
|
90648
|
+
VeoVideoList:
|
|
90649
|
+
type: object
|
|
90650
|
+
properties:
|
|
90651
|
+
name:
|
|
90652
|
+
type: string
|
|
90653
|
+
maxLength: 1024
|
|
90654
|
+
data:
|
|
90655
|
+
nullable: true
|
|
90656
|
+
id:
|
|
90657
|
+
type: integer
|
|
90658
|
+
readOnly: true
|
|
90659
|
+
generation_status:
|
|
90660
|
+
type: string
|
|
90661
|
+
readOnly: true
|
|
90662
|
+
required:
|
|
90663
|
+
- generation_status
|
|
90664
|
+
- id
|
|
90665
|
+
VeoVideoRequest:
|
|
90666
|
+
type: object
|
|
90667
|
+
properties:
|
|
90668
|
+
prompt_image:
|
|
90669
|
+
type: string
|
|
90670
|
+
format: uri
|
|
90671
|
+
nullable: true
|
|
90672
|
+
pattern: (?:jpg|jpeg|png|gif|webp)$
|
|
90673
|
+
prompt_text:
|
|
90674
|
+
type: string
|
|
90675
|
+
name:
|
|
90676
|
+
type: string
|
|
90677
|
+
nullable: true
|
|
90678
|
+
required:
|
|
90679
|
+
- prompt_text
|
|
90001
90680
|
VerifyGCPMarketPlaceFailedResponse:
|
|
90002
90681
|
type: object
|
|
90003
90682
|
properties:
|