@iblai/iblai-api 2025.10.27-google-calendar-support-2-ai → 2025.11.3-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 +306 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +307 -36
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +306 -35
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +4 -1
- package/dist/types/models/MentorSettings.d.ts +1 -0
- package/dist/types/models/MentorSettingsPublic.d.ts +1 -0
- package/dist/types/models/NotificationTemplateDetail.d.ts +3 -2
- package/dist/types/models/NotificationTemplateList.d.ts +3 -2
- package/dist/types/models/PatchedNotificationTemplateDetail.d.ts +3 -2
- package/dist/types/models/PatchedPlatformPublicImageAsset.d.ts +11 -0
- package/dist/types/models/PlatformPrompt.d.ts +2 -5
- package/dist/types/models/PlatformPublicImageAsset.d.ts +11 -0
- package/dist/types/models/RecommendationTypeEnum.d.ts +2 -8
- package/dist/types/models/{Type768Enum.d.ts → Type2a5Enum.d.ts} +3 -1
- package/dist/types/models/V2PersonalizedMentorsResponse.d.ts +29 -0
- package/dist/types/services/AiMentorService.d.ts +1 -0
- package/dist/types/services/AiSearchService.d.ts +124 -9
- package/dist/types/services/CoreService.d.ts +66 -0
- package/package.json +1 -1
- package/sdk_schema.yml +636 -23
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +4 -1
- package/src/models/MentorSettings.ts +1 -0
- package/src/models/MentorSettingsPublic.ts +1 -0
- package/src/models/NotificationTemplateDetail.ts +3 -2
- package/src/models/NotificationTemplateList.ts +3 -2
- package/src/models/PatchedNotificationTemplateDetail.ts +3 -2
- package/src/models/PatchedPlatformPublicImageAsset.ts +16 -0
- package/src/models/PlatformPrompt.ts +2 -5
- package/src/models/PlatformPublicImageAsset.ts +16 -0
- package/src/models/RecommendationTypeEnum.ts +2 -8
- package/src/models/{Type768Enum.ts → Type2a5Enum.ts} +3 -1
- package/src/models/V2PersonalizedMentorsResponse.ts +34 -0
- package/src/services/AiMentorService.ts +1 -0
- package/src/services/AiSearchService.ts +218 -10
- package/src/services/CoreService.ts +155 -0
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.80.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -24195,6 +24195,7 @@ paths:
|
|
|
24195
24195
|
/api/ai-mentor/orgs/{org}/users/{user_id}/mentors/{mentor}/public-sharable-link/:
|
|
24196
24196
|
get:
|
|
24197
24197
|
operationId: ai_mentor_orgs_users_mentors_public_sharable_link_retrieve
|
|
24198
|
+
description: Return True if the token is valid and link is enabled, else False
|
|
24198
24199
|
parameters:
|
|
24199
24200
|
- in: path
|
|
24200
24201
|
name: mentor
|
|
@@ -32574,11 +32575,11 @@ paths:
|
|
|
32574
32575
|
minimum: 1
|
|
32575
32576
|
description: Number of results per page
|
|
32576
32577
|
- in: query
|
|
32577
|
-
name:
|
|
32578
|
+
name: llm_providers
|
|
32578
32579
|
schema:
|
|
32579
32580
|
type: string
|
|
32580
32581
|
minLength: 1
|
|
32581
|
-
description: LLM
|
|
32582
|
+
description: LLM provider filter
|
|
32582
32583
|
- in: query
|
|
32583
32584
|
name: offset
|
|
32584
32585
|
schema:
|
|
@@ -32772,6 +32773,155 @@ paths:
|
|
|
32772
32773
|
description: Not found
|
|
32773
32774
|
'500':
|
|
32774
32775
|
description: Server error
|
|
32776
|
+
/api/ai-search/personalized-mentors/:
|
|
32777
|
+
get:
|
|
32778
|
+
operationId: v2_personalized_mentors
|
|
32779
|
+
description: "\n Get mentors created by a specific user within a given\
|
|
32780
|
+
\ organization/platform.\n This endpoint provides a personalized view\
|
|
32781
|
+
\ of the user's own mentors with\n support for filtering, pagination,\
|
|
32782
|
+
\ and detailed mentor information.\n\n **Authentication Required:**\n\
|
|
32783
|
+
\ - username: Required for personalized mentor access\n - platform_key:\
|
|
32784
|
+
\ Required for tenant-specific content\n\n **Features:**\n -\
|
|
32785
|
+
\ User's own mentors only\n - Personalization data (access counts,\
|
|
32786
|
+
\ last used)\n - Filtering and faceted search\n - Pagination\
|
|
32787
|
+
\ support\n - Detail and list views\n "
|
|
32788
|
+
summary: Get mentors created by a specific user
|
|
32789
|
+
parameters:
|
|
32790
|
+
- in: query
|
|
32791
|
+
name: audience
|
|
32792
|
+
schema:
|
|
32793
|
+
type: array
|
|
32794
|
+
items:
|
|
32795
|
+
type: string
|
|
32796
|
+
description: Filter by audience
|
|
32797
|
+
- in: query
|
|
32798
|
+
name: category
|
|
32799
|
+
schema:
|
|
32800
|
+
type: string
|
|
32801
|
+
minLength: 1
|
|
32802
|
+
description: Mentor category filter
|
|
32803
|
+
- in: query
|
|
32804
|
+
name: limit
|
|
32805
|
+
schema:
|
|
32806
|
+
type: integer
|
|
32807
|
+
description: Number of results per page
|
|
32808
|
+
- in: query
|
|
32809
|
+
name: llm_providers
|
|
32810
|
+
schema:
|
|
32811
|
+
type: array
|
|
32812
|
+
items:
|
|
32813
|
+
type: string
|
|
32814
|
+
description: Filter by LLM provider
|
|
32815
|
+
- in: query
|
|
32816
|
+
name: offset
|
|
32817
|
+
schema:
|
|
32818
|
+
type: integer
|
|
32819
|
+
description: Number of results to skip
|
|
32820
|
+
- in: query
|
|
32821
|
+
name: order_by
|
|
32822
|
+
schema:
|
|
32823
|
+
type: string
|
|
32824
|
+
minLength: 1
|
|
32825
|
+
description: Field to sort by
|
|
32826
|
+
- in: query
|
|
32827
|
+
name: order_direction
|
|
32828
|
+
schema:
|
|
32829
|
+
enum:
|
|
32830
|
+
- asc
|
|
32831
|
+
- desc
|
|
32832
|
+
type: string
|
|
32833
|
+
minLength: 1
|
|
32834
|
+
description: |-
|
|
32835
|
+
Sort direction
|
|
32836
|
+
|
|
32837
|
+
* `asc` - asc
|
|
32838
|
+
* `desc` - desc
|
|
32839
|
+
- in: query
|
|
32840
|
+
name: platform_key
|
|
32841
|
+
schema:
|
|
32842
|
+
type: string
|
|
32843
|
+
minLength: 1
|
|
32844
|
+
description: Platform key for authentication
|
|
32845
|
+
required: true
|
|
32846
|
+
- in: query
|
|
32847
|
+
name: query
|
|
32848
|
+
schema:
|
|
32849
|
+
type: string
|
|
32850
|
+
minLength: 1
|
|
32851
|
+
description: Search query for personalized mentors
|
|
32852
|
+
- in: query
|
|
32853
|
+
name: return_facet
|
|
32854
|
+
schema:
|
|
32855
|
+
type: boolean
|
|
32856
|
+
description: Include facet data in response
|
|
32857
|
+
- in: query
|
|
32858
|
+
name: tags
|
|
32859
|
+
schema:
|
|
32860
|
+
type: array
|
|
32861
|
+
items:
|
|
32862
|
+
type: string
|
|
32863
|
+
description: Filter by tags
|
|
32864
|
+
- in: query
|
|
32865
|
+
name: username
|
|
32866
|
+
schema:
|
|
32867
|
+
type: string
|
|
32868
|
+
minLength: 1
|
|
32869
|
+
description: Username for authentication (required for unauthenticated requests)
|
|
32870
|
+
- in: query
|
|
32871
|
+
name: visibility
|
|
32872
|
+
schema:
|
|
32873
|
+
type: array
|
|
32874
|
+
items:
|
|
32875
|
+
type: string
|
|
32876
|
+
description: Filter by visibility
|
|
32877
|
+
tags:
|
|
32878
|
+
- ai-search
|
|
32879
|
+
security:
|
|
32880
|
+
- PlatformApiKeyAuthentication: []
|
|
32881
|
+
- {}
|
|
32882
|
+
responses:
|
|
32883
|
+
'200':
|
|
32884
|
+
content:
|
|
32885
|
+
application/json:
|
|
32886
|
+
schema:
|
|
32887
|
+
$ref: '#/components/schemas/V2PersonalizedMentorsResponse'
|
|
32888
|
+
examples:
|
|
32889
|
+
GetUser'sMentors:
|
|
32890
|
+
value:
|
|
32891
|
+
username: john.doe
|
|
32892
|
+
platform_key: example-university
|
|
32893
|
+
limit: 20
|
|
32894
|
+
summary: Get user's mentors
|
|
32895
|
+
description: Get all mentors created by john.doe
|
|
32896
|
+
FilterByCategory:
|
|
32897
|
+
value:
|
|
32898
|
+
username: jane.smith
|
|
32899
|
+
platform_key: tech-institute
|
|
32900
|
+
category:
|
|
32901
|
+
- Computer Science
|
|
32902
|
+
visibility:
|
|
32903
|
+
- public
|
|
32904
|
+
return_facet: true
|
|
32905
|
+
summary: Filter by category
|
|
32906
|
+
description: Filter user's mentors by category and visibility
|
|
32907
|
+
DetailViewByUUID:
|
|
32908
|
+
value:
|
|
32909
|
+
username: john.doe
|
|
32910
|
+
platform_key: example-university
|
|
32911
|
+
unique_id: 550e8400-e29b-41d4-a716-446655440000
|
|
32912
|
+
summary: Detail view by UUID
|
|
32913
|
+
description: Retrieve a specific mentor by UUID
|
|
32914
|
+
description: ''
|
|
32915
|
+
'400':
|
|
32916
|
+
description: Bad request - invalid parameters
|
|
32917
|
+
'401':
|
|
32918
|
+
description: Unauthorized - missing credentials
|
|
32919
|
+
'403':
|
|
32920
|
+
description: Forbidden - insufficient permissions
|
|
32921
|
+
'404':
|
|
32922
|
+
description: Mentor not found
|
|
32923
|
+
'500':
|
|
32924
|
+
description: Internal server error
|
|
32775
32925
|
/api/ai-search/prompts/:
|
|
32776
32926
|
get:
|
|
32777
32927
|
operationId: list_platform_prompts
|
|
@@ -32918,6 +33068,152 @@ paths:
|
|
|
32918
33068
|
description: Admin permissions required or platform mismatch
|
|
32919
33069
|
'404':
|
|
32920
33070
|
description: Prompt not found
|
|
33071
|
+
/api/ai-search/recommendation/prompts/:
|
|
33072
|
+
get:
|
|
33073
|
+
operationId: list_platform_prompts_2
|
|
33074
|
+
description: Get all recommendation prompts for a specific platform. Optionally
|
|
33075
|
+
filter by SPA URL or recommendation type.
|
|
33076
|
+
summary: List recommendation prompts for a platform
|
|
33077
|
+
tags:
|
|
33078
|
+
- ai-search
|
|
33079
|
+
security:
|
|
33080
|
+
- PlatformApiKeyAuthentication: []
|
|
33081
|
+
- {}
|
|
33082
|
+
responses:
|
|
33083
|
+
'200':
|
|
33084
|
+
content:
|
|
33085
|
+
application/json:
|
|
33086
|
+
schema:
|
|
33087
|
+
type: array
|
|
33088
|
+
items:
|
|
33089
|
+
$ref: '#/components/schemas/PlatformPromptResponse'
|
|
33090
|
+
description: ''
|
|
33091
|
+
'400':
|
|
33092
|
+
description: Invalid parameters
|
|
33093
|
+
'401':
|
|
33094
|
+
description: Authentication required
|
|
33095
|
+
'403':
|
|
33096
|
+
description: Admin permissions required
|
|
33097
|
+
post:
|
|
33098
|
+
operationId: create_platform_prompt_2
|
|
33099
|
+
description: Create a new recommendation prompt for a platform and SPA.
|
|
33100
|
+
summary: Create a new recommendation prompt
|
|
33101
|
+
tags:
|
|
33102
|
+
- ai-search
|
|
33103
|
+
requestBody:
|
|
33104
|
+
content:
|
|
33105
|
+
application/json:
|
|
33106
|
+
schema:
|
|
33107
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33108
|
+
examples:
|
|
33109
|
+
CreateCoursePrompt:
|
|
33110
|
+
value:
|
|
33111
|
+
platform_key: acme-corp
|
|
33112
|
+
recommendation_type: courses
|
|
33113
|
+
spa_url: catalog.acme-corp.com
|
|
33114
|
+
prompt_text: Focus on technical skills and certifications...
|
|
33115
|
+
active: true
|
|
33116
|
+
summary: Create course prompt
|
|
33117
|
+
application/scim+json:
|
|
33118
|
+
schema:
|
|
33119
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33120
|
+
application/x-www-form-urlencoded:
|
|
33121
|
+
schema:
|
|
33122
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33123
|
+
multipart/form-data:
|
|
33124
|
+
schema:
|
|
33125
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33126
|
+
'*/*':
|
|
33127
|
+
schema:
|
|
33128
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33129
|
+
security:
|
|
33130
|
+
- PlatformApiKeyAuthentication: []
|
|
33131
|
+
- {}
|
|
33132
|
+
responses:
|
|
33133
|
+
'201':
|
|
33134
|
+
content:
|
|
33135
|
+
application/json:
|
|
33136
|
+
schema:
|
|
33137
|
+
$ref: '#/components/schemas/PlatformPromptResponse'
|
|
33138
|
+
examples:
|
|
33139
|
+
CreateCoursePrompt:
|
|
33140
|
+
value:
|
|
33141
|
+
platform_key: acme-corp
|
|
33142
|
+
recommendation_type: courses
|
|
33143
|
+
spa_url: catalog.acme-corp.com
|
|
33144
|
+
prompt_text: Focus on technical skills and certifications...
|
|
33145
|
+
active: true
|
|
33146
|
+
summary: Create course prompt
|
|
33147
|
+
description: ''
|
|
33148
|
+
'400':
|
|
33149
|
+
description: Invalid data
|
|
33150
|
+
'401':
|
|
33151
|
+
description: Authentication required
|
|
33152
|
+
'403':
|
|
33153
|
+
description: Admin permissions required
|
|
33154
|
+
'409':
|
|
33155
|
+
description: Prompt already exists for this combination
|
|
33156
|
+
put:
|
|
33157
|
+
operationId: update_platform_prompt_2
|
|
33158
|
+
description: Update an existing prompt by ID. Must provide platform_key to verify
|
|
33159
|
+
ownership.
|
|
33160
|
+
summary: Update an existing recommendation prompt
|
|
33161
|
+
tags:
|
|
33162
|
+
- ai-search
|
|
33163
|
+
requestBody:
|
|
33164
|
+
content:
|
|
33165
|
+
application/json:
|
|
33166
|
+
schema:
|
|
33167
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33168
|
+
application/scim+json:
|
|
33169
|
+
schema:
|
|
33170
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33171
|
+
application/x-www-form-urlencoded:
|
|
33172
|
+
schema:
|
|
33173
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33174
|
+
multipart/form-data:
|
|
33175
|
+
schema:
|
|
33176
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33177
|
+
'*/*':
|
|
33178
|
+
schema:
|
|
33179
|
+
$ref: '#/components/schemas/PlatformPrompt'
|
|
33180
|
+
security:
|
|
33181
|
+
- PlatformApiKeyAuthentication: []
|
|
33182
|
+
- {}
|
|
33183
|
+
responses:
|
|
33184
|
+
'200':
|
|
33185
|
+
content:
|
|
33186
|
+
application/json:
|
|
33187
|
+
schema:
|
|
33188
|
+
$ref: '#/components/schemas/PlatformPromptResponse'
|
|
33189
|
+
description: ''
|
|
33190
|
+
'400':
|
|
33191
|
+
description: Invalid data
|
|
33192
|
+
'401':
|
|
33193
|
+
description: Authentication required
|
|
33194
|
+
'403':
|
|
33195
|
+
description: Admin permissions required or platform mismatch
|
|
33196
|
+
'404':
|
|
33197
|
+
description: Prompt not found
|
|
33198
|
+
delete:
|
|
33199
|
+
operationId: delete_platform_prompt_2
|
|
33200
|
+
description: Delete a recommendation prompt by ID. Must provide platform_key
|
|
33201
|
+
to verify ownership. This permanently removes the prompt.
|
|
33202
|
+
summary: Delete a recommendation prompt
|
|
33203
|
+
tags:
|
|
33204
|
+
- ai-search
|
|
33205
|
+
security:
|
|
33206
|
+
- PlatformApiKeyAuthentication: []
|
|
33207
|
+
- {}
|
|
33208
|
+
responses:
|
|
33209
|
+
'204':
|
|
33210
|
+
description: Prompt deleted successfully
|
|
33211
|
+
'401':
|
|
33212
|
+
description: Authentication required
|
|
33213
|
+
'403':
|
|
33214
|
+
description: Admin permissions required or platform mismatch
|
|
33215
|
+
'404':
|
|
33216
|
+
description: Prompt not found
|
|
32921
33217
|
/api/ai-search/recommendations/:
|
|
32922
33218
|
get:
|
|
32923
33219
|
operationId: v2_course_recommendations
|
|
@@ -33024,7 +33320,14 @@ paths:
|
|
|
33024
33320
|
type: string
|
|
33025
33321
|
minLength: 1
|
|
33026
33322
|
description: Platform key for tenant-scoped recommendations
|
|
33027
|
-
|
|
33323
|
+
- in: query
|
|
33324
|
+
name: platform_org
|
|
33325
|
+
schema:
|
|
33326
|
+
type: string
|
|
33327
|
+
nullable: true
|
|
33328
|
+
minLength: 1
|
|
33329
|
+
description: Platform org identifier (optional - avoids database lookup if
|
|
33330
|
+
provided)
|
|
33028
33331
|
- in: query
|
|
33029
33332
|
name: ranking_prompt
|
|
33030
33333
|
schema:
|
|
@@ -33061,7 +33364,7 @@ paths:
|
|
|
33061
33364
|
default: courses
|
|
33062
33365
|
minLength: 1
|
|
33063
33366
|
description: |-
|
|
33064
|
-
Type of resource to recommend (catalog
|
|
33367
|
+
Type of resource to recommend. Catalog types (courses/programs/resources/pathways) will use the platform's 'catalog' prompt category if configured.
|
|
33065
33368
|
|
|
33066
33369
|
* `mentors` - Mentor Recommendations
|
|
33067
33370
|
* `courses` - Course Recommendations
|
|
@@ -51184,6 +51487,225 @@ paths:
|
|
|
51184
51487
|
schema:
|
|
51185
51488
|
$ref: '#/components/schemas/UserPolicyUpdateForbidden'
|
|
51186
51489
|
description: ''
|
|
51490
|
+
/api/core/platforms/{platform_key}/public-image-assets/:
|
|
51491
|
+
get:
|
|
51492
|
+
operationId: core_platforms_public_image_assets_list
|
|
51493
|
+
description: Shared functionality for platform public image asset views.
|
|
51494
|
+
parameters:
|
|
51495
|
+
- in: path
|
|
51496
|
+
name: platform_key
|
|
51497
|
+
schema:
|
|
51498
|
+
type: string
|
|
51499
|
+
required: true
|
|
51500
|
+
tags:
|
|
51501
|
+
- core
|
|
51502
|
+
security:
|
|
51503
|
+
- PlatformApiKeyAuthentication: []
|
|
51504
|
+
responses:
|
|
51505
|
+
'200':
|
|
51506
|
+
content:
|
|
51507
|
+
application/json:
|
|
51508
|
+
schema:
|
|
51509
|
+
type: array
|
|
51510
|
+
items:
|
|
51511
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51512
|
+
description: ''
|
|
51513
|
+
post:
|
|
51514
|
+
operationId: core_platforms_public_image_assets_create
|
|
51515
|
+
description: Shared functionality for platform public image asset views.
|
|
51516
|
+
parameters:
|
|
51517
|
+
- in: path
|
|
51518
|
+
name: platform_key
|
|
51519
|
+
schema:
|
|
51520
|
+
type: string
|
|
51521
|
+
required: true
|
|
51522
|
+
tags:
|
|
51523
|
+
- core
|
|
51524
|
+
requestBody:
|
|
51525
|
+
content:
|
|
51526
|
+
application/json:
|
|
51527
|
+
schema:
|
|
51528
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51529
|
+
application/scim+json:
|
|
51530
|
+
schema:
|
|
51531
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51532
|
+
application/x-www-form-urlencoded:
|
|
51533
|
+
schema:
|
|
51534
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51535
|
+
multipart/form-data:
|
|
51536
|
+
schema:
|
|
51537
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51538
|
+
'*/*':
|
|
51539
|
+
schema:
|
|
51540
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51541
|
+
required: true
|
|
51542
|
+
security:
|
|
51543
|
+
- PlatformApiKeyAuthentication: []
|
|
51544
|
+
responses:
|
|
51545
|
+
'201':
|
|
51546
|
+
content:
|
|
51547
|
+
application/json:
|
|
51548
|
+
schema:
|
|
51549
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51550
|
+
description: ''
|
|
51551
|
+
/api/core/platforms/{platform_key}/public-image-assets/{asset_id}/:
|
|
51552
|
+
get:
|
|
51553
|
+
operationId: core_platforms_public_image_assets_retrieve
|
|
51554
|
+
description: Shared functionality for platform public image asset views.
|
|
51555
|
+
parameters:
|
|
51556
|
+
- in: path
|
|
51557
|
+
name: asset_id
|
|
51558
|
+
schema:
|
|
51559
|
+
type: integer
|
|
51560
|
+
required: true
|
|
51561
|
+
- in: path
|
|
51562
|
+
name: platform_key
|
|
51563
|
+
schema:
|
|
51564
|
+
type: string
|
|
51565
|
+
required: true
|
|
51566
|
+
tags:
|
|
51567
|
+
- core
|
|
51568
|
+
security:
|
|
51569
|
+
- PlatformApiKeyAuthentication: []
|
|
51570
|
+
responses:
|
|
51571
|
+
'200':
|
|
51572
|
+
content:
|
|
51573
|
+
application/json:
|
|
51574
|
+
schema:
|
|
51575
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51576
|
+
description: ''
|
|
51577
|
+
put:
|
|
51578
|
+
operationId: core_platforms_public_image_assets_update
|
|
51579
|
+
description: Shared functionality for platform public image asset views.
|
|
51580
|
+
parameters:
|
|
51581
|
+
- in: path
|
|
51582
|
+
name: asset_id
|
|
51583
|
+
schema:
|
|
51584
|
+
type: integer
|
|
51585
|
+
required: true
|
|
51586
|
+
- in: path
|
|
51587
|
+
name: platform_key
|
|
51588
|
+
schema:
|
|
51589
|
+
type: string
|
|
51590
|
+
required: true
|
|
51591
|
+
tags:
|
|
51592
|
+
- core
|
|
51593
|
+
requestBody:
|
|
51594
|
+
content:
|
|
51595
|
+
application/json:
|
|
51596
|
+
schema:
|
|
51597
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51598
|
+
application/scim+json:
|
|
51599
|
+
schema:
|
|
51600
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51601
|
+
application/x-www-form-urlencoded:
|
|
51602
|
+
schema:
|
|
51603
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51604
|
+
multipart/form-data:
|
|
51605
|
+
schema:
|
|
51606
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51607
|
+
'*/*':
|
|
51608
|
+
schema:
|
|
51609
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51610
|
+
required: true
|
|
51611
|
+
security:
|
|
51612
|
+
- PlatformApiKeyAuthentication: []
|
|
51613
|
+
responses:
|
|
51614
|
+
'200':
|
|
51615
|
+
content:
|
|
51616
|
+
application/json:
|
|
51617
|
+
schema:
|
|
51618
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51619
|
+
description: ''
|
|
51620
|
+
patch:
|
|
51621
|
+
operationId: core_platforms_public_image_assets_partial_update
|
|
51622
|
+
description: Shared functionality for platform public image asset views.
|
|
51623
|
+
parameters:
|
|
51624
|
+
- in: path
|
|
51625
|
+
name: asset_id
|
|
51626
|
+
schema:
|
|
51627
|
+
type: integer
|
|
51628
|
+
required: true
|
|
51629
|
+
- in: path
|
|
51630
|
+
name: platform_key
|
|
51631
|
+
schema:
|
|
51632
|
+
type: string
|
|
51633
|
+
required: true
|
|
51634
|
+
tags:
|
|
51635
|
+
- core
|
|
51636
|
+
requestBody:
|
|
51637
|
+
content:
|
|
51638
|
+
application/json:
|
|
51639
|
+
schema:
|
|
51640
|
+
$ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
|
|
51641
|
+
application/scim+json:
|
|
51642
|
+
schema:
|
|
51643
|
+
$ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
|
|
51644
|
+
application/x-www-form-urlencoded:
|
|
51645
|
+
schema:
|
|
51646
|
+
$ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
|
|
51647
|
+
multipart/form-data:
|
|
51648
|
+
schema:
|
|
51649
|
+
$ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
|
|
51650
|
+
'*/*':
|
|
51651
|
+
schema:
|
|
51652
|
+
$ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
|
|
51653
|
+
security:
|
|
51654
|
+
- PlatformApiKeyAuthentication: []
|
|
51655
|
+
responses:
|
|
51656
|
+
'200':
|
|
51657
|
+
content:
|
|
51658
|
+
application/json:
|
|
51659
|
+
schema:
|
|
51660
|
+
$ref: '#/components/schemas/PlatformPublicImageAsset'
|
|
51661
|
+
description: ''
|
|
51662
|
+
delete:
|
|
51663
|
+
operationId: core_platforms_public_image_assets_destroy
|
|
51664
|
+
description: Shared functionality for platform public image asset views.
|
|
51665
|
+
parameters:
|
|
51666
|
+
- in: path
|
|
51667
|
+
name: asset_id
|
|
51668
|
+
schema:
|
|
51669
|
+
type: integer
|
|
51670
|
+
required: true
|
|
51671
|
+
- in: path
|
|
51672
|
+
name: platform_key
|
|
51673
|
+
schema:
|
|
51674
|
+
type: string
|
|
51675
|
+
required: true
|
|
51676
|
+
tags:
|
|
51677
|
+
- core
|
|
51678
|
+
security:
|
|
51679
|
+
- PlatformApiKeyAuthentication: []
|
|
51680
|
+
responses:
|
|
51681
|
+
'204':
|
|
51682
|
+
description: No response body
|
|
51683
|
+
/api/core/platforms/{platform_key}/public-image-assets/{asset_id}/file/:
|
|
51684
|
+
get:
|
|
51685
|
+
operationId: core_platforms_public_image_assets_file_retrieve
|
|
51686
|
+
description: Shared functionality for platform public image asset views.
|
|
51687
|
+
parameters:
|
|
51688
|
+
- in: path
|
|
51689
|
+
name: asset_id
|
|
51690
|
+
schema:
|
|
51691
|
+
type: integer
|
|
51692
|
+
required: true
|
|
51693
|
+
- in: path
|
|
51694
|
+
name: platform_key
|
|
51695
|
+
schema:
|
|
51696
|
+
type: string
|
|
51697
|
+
required: true
|
|
51698
|
+
tags:
|
|
51699
|
+
- core
|
|
51700
|
+
responses:
|
|
51701
|
+
'200':
|
|
51702
|
+
content:
|
|
51703
|
+
application/json:
|
|
51704
|
+
schema:
|
|
51705
|
+
type: object
|
|
51706
|
+
additionalProperties: {}
|
|
51707
|
+
description: Unspecified response body
|
|
51708
|
+
description: ''
|
|
51187
51709
|
/api/core/rbac/groups/:
|
|
51188
51710
|
get:
|
|
51189
51711
|
operationId: core_rbac_groups_list
|
|
@@ -75170,6 +75692,8 @@ components:
|
|
|
75170
75692
|
platform_key:
|
|
75171
75693
|
type: string
|
|
75172
75694
|
readOnly: true
|
|
75695
|
+
llm_config:
|
|
75696
|
+
readOnly: true
|
|
75173
75697
|
system_prompt:
|
|
75174
75698
|
type: string
|
|
75175
75699
|
readOnly: true
|
|
@@ -75274,6 +75798,7 @@ components:
|
|
|
75274
75798
|
- id
|
|
75275
75799
|
- is_deleted
|
|
75276
75800
|
- is_guided_mentor
|
|
75801
|
+
- llm_config
|
|
75277
75802
|
- llm_name
|
|
75278
75803
|
- llm_provider
|
|
75279
75804
|
- llm_temperature
|
|
@@ -75490,6 +76015,8 @@ components:
|
|
|
75490
76015
|
platform_key:
|
|
75491
76016
|
type: string
|
|
75492
76017
|
readOnly: true
|
|
76018
|
+
llm_config:
|
|
76019
|
+
readOnly: true
|
|
75493
76020
|
required:
|
|
75494
76021
|
- allow_anonymous
|
|
75495
76022
|
- can_use_tools
|
|
@@ -75518,6 +76045,7 @@ components:
|
|
|
75518
76045
|
- greeting_method
|
|
75519
76046
|
- id
|
|
75520
76047
|
- is_guided_mentor
|
|
76048
|
+
- llm_config
|
|
75521
76049
|
- llm_name
|
|
75522
76050
|
- mentor
|
|
75523
76051
|
- mentor_description
|
|
@@ -76161,6 +76689,7 @@ components:
|
|
|
76161
76689
|
* `PROGRAM_INVITATION` - Program Invitation
|
|
76162
76690
|
* `COURSE_INVITATION` - Course Invitation
|
|
76163
76691
|
* `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
76692
|
+
* `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
76164
76693
|
* `ROLE_CHANGE` - Role Change
|
|
76165
76694
|
* `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
76166
76695
|
* `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -76169,7 +76698,7 @@ components:
|
|
|
76169
76698
|
* `USER_LICENSE_ASSIGNMENT` - User License Assignment
|
|
76170
76699
|
* `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
|
|
76171
76700
|
oneOf:
|
|
76172
|
-
- $ref: '#/components/schemas/
|
|
76701
|
+
- $ref: '#/components/schemas/Type2a5Enum'
|
|
76173
76702
|
- $ref: '#/components/schemas/NullEnum'
|
|
76174
76703
|
name:
|
|
76175
76704
|
type: string
|
|
@@ -76289,6 +76818,7 @@ components:
|
|
|
76289
76818
|
* `PROGRAM_INVITATION` - Program Invitation
|
|
76290
76819
|
* `COURSE_INVITATION` - Course Invitation
|
|
76291
76820
|
* `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
76821
|
+
* `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
76292
76822
|
* `ROLE_CHANGE` - Role Change
|
|
76293
76823
|
* `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
76294
76824
|
* `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -76297,7 +76827,7 @@ components:
|
|
|
76297
76827
|
* `USER_LICENSE_ASSIGNMENT` - User License Assignment
|
|
76298
76828
|
* `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
|
|
76299
76829
|
oneOf:
|
|
76300
|
-
- $ref: '#/components/schemas/
|
|
76830
|
+
- $ref: '#/components/schemas/Type2a5Enum'
|
|
76301
76831
|
- $ref: '#/components/schemas/BlankEnum'
|
|
76302
76832
|
- $ref: '#/components/schemas/NullEnum'
|
|
76303
76833
|
name:
|
|
@@ -78942,6 +79472,7 @@ components:
|
|
|
78942
79472
|
* `PROGRAM_INVITATION` - Program Invitation
|
|
78943
79473
|
* `COURSE_INVITATION` - Course Invitation
|
|
78944
79474
|
* `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
79475
|
+
* `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
78945
79476
|
* `ROLE_CHANGE` - Role Change
|
|
78946
79477
|
* `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
78947
79478
|
* `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -78950,7 +79481,7 @@ components:
|
|
|
78950
79481
|
* `USER_LICENSE_ASSIGNMENT` - User License Assignment
|
|
78951
79482
|
* `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
|
|
78952
79483
|
oneOf:
|
|
78953
|
-
- $ref: '#/components/schemas/
|
|
79484
|
+
- $ref: '#/components/schemas/Type2a5Enum'
|
|
78954
79485
|
- $ref: '#/components/schemas/NullEnum'
|
|
78955
79486
|
name:
|
|
78956
79487
|
type: string
|
|
@@ -79111,6 +79642,31 @@ components:
|
|
|
79111
79642
|
readOnly: true
|
|
79112
79643
|
description: This will be fed into the run of this agent as part of its
|
|
79113
79644
|
input prompt.
|
|
79645
|
+
PatchedPlatformPublicImageAsset:
|
|
79646
|
+
type: object
|
|
79647
|
+
properties:
|
|
79648
|
+
id:
|
|
79649
|
+
type: integer
|
|
79650
|
+
readOnly: true
|
|
79651
|
+
category:
|
|
79652
|
+
type: string
|
|
79653
|
+
description: Category of the asset
|
|
79654
|
+
maxLength: 200
|
|
79655
|
+
image:
|
|
79656
|
+
type: string
|
|
79657
|
+
format: uri
|
|
79658
|
+
writeOnly: true
|
|
79659
|
+
url:
|
|
79660
|
+
type: string
|
|
79661
|
+
readOnly: true
|
|
79662
|
+
created_on:
|
|
79663
|
+
type: string
|
|
79664
|
+
format: date-time
|
|
79665
|
+
readOnly: true
|
|
79666
|
+
last_updated:
|
|
79667
|
+
type: string
|
|
79668
|
+
format: date-time
|
|
79669
|
+
readOnly: true
|
|
79114
79670
|
PatchedPlatformPublicMetadata:
|
|
79115
79671
|
type: object
|
|
79116
79672
|
properties:
|
|
@@ -81579,15 +82135,12 @@ components:
|
|
|
81579
82135
|
recommendation_type:
|
|
81580
82136
|
allOf:
|
|
81581
82137
|
- $ref: '#/components/schemas/RecommendationTypeEnum'
|
|
81582
|
-
default:
|
|
82138
|
+
default: catalog
|
|
81583
82139
|
description: |-
|
|
81584
|
-
|
|
82140
|
+
Prompt category. Use 'catalog' for courses/programs/resources/pathways; use 'mentors' for mentor prompts.
|
|
81585
82141
|
|
|
81586
82142
|
* `mentors` - Mentor Recommendations
|
|
81587
|
-
* `
|
|
81588
|
-
* `programs` - Program Recommendations
|
|
81589
|
-
* `resources` - Resource Recommendations
|
|
81590
|
-
* `pathways` - Pathway Recommendations
|
|
82143
|
+
* `catalog` - Catalog Recommendations
|
|
81591
82144
|
spa_url:
|
|
81592
82145
|
type: string
|
|
81593
82146
|
nullable: true
|
|
@@ -81630,6 +82183,38 @@ components:
|
|
|
81630
82183
|
- prompt_text
|
|
81631
82184
|
- recommendation_type
|
|
81632
82185
|
- updated_at
|
|
82186
|
+
PlatformPublicImageAsset:
|
|
82187
|
+
type: object
|
|
82188
|
+
properties:
|
|
82189
|
+
id:
|
|
82190
|
+
type: integer
|
|
82191
|
+
readOnly: true
|
|
82192
|
+
category:
|
|
82193
|
+
type: string
|
|
82194
|
+
description: Category of the asset
|
|
82195
|
+
maxLength: 200
|
|
82196
|
+
image:
|
|
82197
|
+
type: string
|
|
82198
|
+
format: uri
|
|
82199
|
+
writeOnly: true
|
|
82200
|
+
url:
|
|
82201
|
+
type: string
|
|
82202
|
+
readOnly: true
|
|
82203
|
+
created_on:
|
|
82204
|
+
type: string
|
|
82205
|
+
format: date-time
|
|
82206
|
+
readOnly: true
|
|
82207
|
+
last_updated:
|
|
82208
|
+
type: string
|
|
82209
|
+
format: date-time
|
|
82210
|
+
readOnly: true
|
|
82211
|
+
required:
|
|
82212
|
+
- category
|
|
82213
|
+
- created_on
|
|
82214
|
+
- id
|
|
82215
|
+
- image
|
|
82216
|
+
- last_updated
|
|
82217
|
+
- url
|
|
81633
82218
|
PlatformPublicMetadata:
|
|
81634
82219
|
type: object
|
|
81635
82220
|
properties:
|
|
@@ -84154,17 +84739,11 @@ components:
|
|
|
84154
84739
|
RecommendationTypeEnum:
|
|
84155
84740
|
enum:
|
|
84156
84741
|
- mentors
|
|
84157
|
-
-
|
|
84158
|
-
- programs
|
|
84159
|
-
- resources
|
|
84160
|
-
- pathways
|
|
84742
|
+
- catalog
|
|
84161
84743
|
type: string
|
|
84162
84744
|
description: |-
|
|
84163
84745
|
* `mentors` - Mentor Recommendations
|
|
84164
|
-
* `
|
|
84165
|
-
* `programs` - Program Recommendations
|
|
84166
|
-
* `resources` - Resource Recommendations
|
|
84167
|
-
* `pathways` - Pathway Recommendations
|
|
84746
|
+
* `catalog` - Catalog Recommendations
|
|
84168
84747
|
RecommendedCoursesResponse:
|
|
84169
84748
|
type: object
|
|
84170
84749
|
description: Response serializer for RecommendedCoursesView
|
|
@@ -87737,7 +88316,7 @@ components:
|
|
|
87737
88316
|
* `openai` - Openai
|
|
87738
88317
|
* `google` - Google
|
|
87739
88318
|
* `elevenlabs` - Elevenlabs
|
|
87740
|
-
|
|
88319
|
+
Type2a5Enum:
|
|
87741
88320
|
enum:
|
|
87742
88321
|
- DEFAULT_TEMPLATE
|
|
87743
88322
|
- APP_REGISTRATION
|
|
@@ -87752,6 +88331,7 @@ components:
|
|
|
87752
88331
|
- PROGRAM_INVITATION
|
|
87753
88332
|
- COURSE_INVITATION
|
|
87754
88333
|
- USER_NOTIF_LEARNER_PROGRESS
|
|
88334
|
+
- PROACTIVE_LEARNER_NOTIFICATION
|
|
87755
88335
|
- ROLE_CHANGE
|
|
87756
88336
|
- COURSE_LICENSE_ASSIGNMENT
|
|
87757
88337
|
- COURSE_LICENSE_GROUP_ASSIGNMENT
|
|
@@ -87774,6 +88354,7 @@ components:
|
|
|
87774
88354
|
* `PROGRAM_INVITATION` - Program Invitation
|
|
87775
88355
|
* `COURSE_INVITATION` - Course Invitation
|
|
87776
88356
|
* `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
88357
|
+
* `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
87777
88358
|
* `ROLE_CHANGE` - Role Change
|
|
87778
88359
|
* `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
87779
88360
|
* `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -89231,6 +89812,38 @@ components:
|
|
|
89231
89812
|
- current_page
|
|
89232
89813
|
- results
|
|
89233
89814
|
- total_pages
|
|
89815
|
+
V2PersonalizedMentorsResponse:
|
|
89816
|
+
type: object
|
|
89817
|
+
description: Response serializer for V2 Personalized Mentors Search.
|
|
89818
|
+
properties:
|
|
89819
|
+
results:
|
|
89820
|
+
type: array
|
|
89821
|
+
items: {}
|
|
89822
|
+
description: List of personalized mentor search results
|
|
89823
|
+
count:
|
|
89824
|
+
type: integer
|
|
89825
|
+
description: Total number of results
|
|
89826
|
+
next:
|
|
89827
|
+
type: string
|
|
89828
|
+
nullable: true
|
|
89829
|
+
description: URL for next page of results
|
|
89830
|
+
previous:
|
|
89831
|
+
type: string
|
|
89832
|
+
nullable: true
|
|
89833
|
+
description: URL for previous page of results
|
|
89834
|
+
current_page:
|
|
89835
|
+
type: integer
|
|
89836
|
+
description: Current page number
|
|
89837
|
+
total_pages:
|
|
89838
|
+
type: integer
|
|
89839
|
+
description: Total number of pages
|
|
89840
|
+
required:
|
|
89841
|
+
- count
|
|
89842
|
+
- current_page
|
|
89843
|
+
- next
|
|
89844
|
+
- previous
|
|
89845
|
+
- results
|
|
89846
|
+
- total_pages
|
|
89234
89847
|
V2RecommendationResponse:
|
|
89235
89848
|
type: object
|
|
89236
89849
|
description: |-
|