@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
|
@@ -67,6 +67,7 @@ export type MentorSettings = {
|
|
|
67
67
|
readonly created_at: string;
|
|
68
68
|
readonly updated_at: string;
|
|
69
69
|
readonly platform_key: string;
|
|
70
|
+
readonly llm_config: any;
|
|
70
71
|
readonly system_prompt: string;
|
|
71
72
|
readonly llm_provider: string;
|
|
72
73
|
readonly llm_temperature: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ConsumerChannel } from './ConsumerChannel';
|
|
2
2
|
import type { NullEnum } from './NullEnum';
|
|
3
3
|
import type { Spa } from './Spa';
|
|
4
|
-
import type {
|
|
4
|
+
import type { Type2a5Enum } from './Type2a5Enum';
|
|
5
5
|
/**
|
|
6
6
|
* Serializer for detailed template view and editing
|
|
7
7
|
*/
|
|
@@ -26,6 +26,7 @@ export type NotificationTemplateDetail = {
|
|
|
26
26
|
* * `PROGRAM_INVITATION` - Program Invitation
|
|
27
27
|
* * `COURSE_INVITATION` - Course Invitation
|
|
28
28
|
* * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
29
|
+
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
29
30
|
* * `ROLE_CHANGE` - Role Change
|
|
30
31
|
* * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
31
32
|
* * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -34,7 +35,7 @@ export type NotificationTemplateDetail = {
|
|
|
34
35
|
* * `USER_LICENSE_ASSIGNMENT` - User License Assignment
|
|
35
36
|
* * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
|
|
36
37
|
*/
|
|
37
|
-
readonly type: (
|
|
38
|
+
readonly type: (Type2a5Enum | NullEnum) | null;
|
|
38
39
|
/**
|
|
39
40
|
* A friendly name for the notification template.
|
|
40
41
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { BlankEnum } from './BlankEnum';
|
|
2
2
|
import type { NullEnum } from './NullEnum';
|
|
3
|
-
import type {
|
|
3
|
+
import type { Type2a5Enum } from './Type2a5Enum';
|
|
4
4
|
/**
|
|
5
5
|
* Serializer for listing notification templates with inheritance info
|
|
6
6
|
*/
|
|
@@ -25,6 +25,7 @@ export type NotificationTemplateList = {
|
|
|
25
25
|
* * `PROGRAM_INVITATION` - Program Invitation
|
|
26
26
|
* * `COURSE_INVITATION` - Course Invitation
|
|
27
27
|
* * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
28
|
+
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
28
29
|
* * `ROLE_CHANGE` - Role Change
|
|
29
30
|
* * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
30
31
|
* * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -33,7 +34,7 @@ export type NotificationTemplateList = {
|
|
|
33
34
|
* * `USER_LICENSE_ASSIGNMENT` - User License Assignment
|
|
34
35
|
* * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
|
|
35
36
|
*/
|
|
36
|
-
type?: (
|
|
37
|
+
type?: (Type2a5Enum | BlankEnum | NullEnum) | null;
|
|
37
38
|
/**
|
|
38
39
|
* A friendly name for the notification template.
|
|
39
40
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ConsumerChannel } from './ConsumerChannel';
|
|
2
2
|
import type { NullEnum } from './NullEnum';
|
|
3
3
|
import type { Spa } from './Spa';
|
|
4
|
-
import type {
|
|
4
|
+
import type { Type2a5Enum } from './Type2a5Enum';
|
|
5
5
|
/**
|
|
6
6
|
* Serializer for detailed template view and editing
|
|
7
7
|
*/
|
|
@@ -26,6 +26,7 @@ export type PatchedNotificationTemplateDetail = {
|
|
|
26
26
|
* * `PROGRAM_INVITATION` - Program Invitation
|
|
27
27
|
* * `COURSE_INVITATION` - Course Invitation
|
|
28
28
|
* * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
29
|
+
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
29
30
|
* * `ROLE_CHANGE` - Role Change
|
|
30
31
|
* * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
31
32
|
* * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -34,7 +35,7 @@ export type PatchedNotificationTemplateDetail = {
|
|
|
34
35
|
* * `USER_LICENSE_ASSIGNMENT` - User License Assignment
|
|
35
36
|
* * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
|
|
36
37
|
*/
|
|
37
|
-
readonly type?: (
|
|
38
|
+
readonly type?: (Type2a5Enum | NullEnum) | null;
|
|
38
39
|
/**
|
|
39
40
|
* A friendly name for the notification template.
|
|
40
41
|
*/
|
|
@@ -17,13 +17,10 @@ export type PlatformPrompt = {
|
|
|
17
17
|
*/
|
|
18
18
|
prompt_text?: string;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Prompt category. Use 'catalog' for courses/programs/resources/pathways; use 'mentors' for mentor prompts.
|
|
21
21
|
*
|
|
22
22
|
* * `mentors` - Mentor Recommendations
|
|
23
|
-
* * `
|
|
24
|
-
* * `programs` - Program Recommendations
|
|
25
|
-
* * `resources` - Resource Recommendations
|
|
26
|
-
* * `pathways` - Pathway Recommendations
|
|
23
|
+
* * `catalog` - Catalog Recommendations
|
|
27
24
|
*/
|
|
28
25
|
recommendation_type?: RecommendationTypeEnum;
|
|
29
26
|
/**
|
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* * `mentors` - Mentor Recommendations
|
|
3
|
-
* * `
|
|
4
|
-
* * `programs` - Program Recommendations
|
|
5
|
-
* * `resources` - Resource Recommendations
|
|
6
|
-
* * `pathways` - Pathway Recommendations
|
|
3
|
+
* * `catalog` - Catalog Recommendations
|
|
7
4
|
*/
|
|
8
5
|
export declare enum RecommendationTypeEnum {
|
|
9
6
|
MENTORS = "mentors",
|
|
10
|
-
|
|
11
|
-
PROGRAMS = "programs",
|
|
12
|
-
RESOURCES = "resources",
|
|
13
|
-
PATHWAYS = "pathways"
|
|
7
|
+
CATALOG = "catalog"
|
|
14
8
|
}
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* * `PROGRAM_INVITATION` - Program Invitation
|
|
13
13
|
* * `COURSE_INVITATION` - Course Invitation
|
|
14
14
|
* * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
|
|
15
|
+
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
15
16
|
* * `ROLE_CHANGE` - Role Change
|
|
16
17
|
* * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
|
|
17
18
|
* * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
|
|
@@ -20,7 +21,7 @@
|
|
|
20
21
|
* * `USER_LICENSE_ASSIGNMENT` - User License Assignment
|
|
21
22
|
* * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
|
|
22
23
|
*/
|
|
23
|
-
export declare enum
|
|
24
|
+
export declare enum Type2a5Enum {
|
|
24
25
|
DEFAULT_TEMPLATE = "DEFAULT_TEMPLATE",
|
|
25
26
|
APP_REGISTRATION = "APP_REGISTRATION",
|
|
26
27
|
USER_NOTIF_USER_REGISTRATION = "USER_NOTIF_USER_REGISTRATION",
|
|
@@ -34,6 +35,7 @@ export declare enum Type768Enum {
|
|
|
34
35
|
PROGRAM_INVITATION = "PROGRAM_INVITATION",
|
|
35
36
|
COURSE_INVITATION = "COURSE_INVITATION",
|
|
36
37
|
USER_NOTIF_LEARNER_PROGRESS = "USER_NOTIF_LEARNER_PROGRESS",
|
|
38
|
+
PROACTIVE_LEARNER_NOTIFICATION = "PROACTIVE_LEARNER_NOTIFICATION",
|
|
37
39
|
ROLE_CHANGE = "ROLE_CHANGE",
|
|
38
40
|
COURSE_LICENSE_ASSIGNMENT = "COURSE_LICENSE_ASSIGNMENT",
|
|
39
41
|
COURSE_LICENSE_GROUP_ASSIGNMENT = "COURSE_LICENSE_GROUP_ASSIGNMENT",
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Response serializer for V2 Personalized Mentors Search.
|
|
3
|
+
*/
|
|
4
|
+
export type V2PersonalizedMentorsResponse = {
|
|
5
|
+
/**
|
|
6
|
+
* List of personalized mentor search results
|
|
7
|
+
*/
|
|
8
|
+
results: Array<any>;
|
|
9
|
+
/**
|
|
10
|
+
* Total number of results
|
|
11
|
+
*/
|
|
12
|
+
count: number;
|
|
13
|
+
/**
|
|
14
|
+
* URL for next page of results
|
|
15
|
+
*/
|
|
16
|
+
next: string | null;
|
|
17
|
+
/**
|
|
18
|
+
* URL for previous page of results
|
|
19
|
+
*/
|
|
20
|
+
previous: string | null;
|
|
21
|
+
/**
|
|
22
|
+
* Current page number
|
|
23
|
+
*/
|
|
24
|
+
current_page: number;
|
|
25
|
+
/**
|
|
26
|
+
* Total number of pages
|
|
27
|
+
*/
|
|
28
|
+
total_pages: number;
|
|
29
|
+
};
|
|
@@ -4447,6 +4447,7 @@ export declare class AiMentorService {
|
|
|
4447
4447
|
org: string;
|
|
4448
4448
|
}): CancelablePromise<MentorSettingsPublic>;
|
|
4449
4449
|
/**
|
|
4450
|
+
* Return True if the token is valid and link is enabled, else False
|
|
4450
4451
|
* @returns ShareableMentorLink
|
|
4451
4452
|
* @throws ApiError
|
|
4452
4453
|
*/
|
|
@@ -2,6 +2,7 @@ import type { MentorSearchResponse } from '../models/MentorSearchResponse';
|
|
|
2
2
|
import type { PlatformPrompt } from '../models/PlatformPrompt';
|
|
3
3
|
import type { PlatformPromptResponse } from '../models/PlatformPromptResponse';
|
|
4
4
|
import type { V2GlobalMentorSearchResponse } from '../models/V2GlobalMentorSearchResponse';
|
|
5
|
+
import type { V2PersonalizedMentorsResponse } from '../models/V2PersonalizedMentorsResponse';
|
|
5
6
|
import type { V2RecommendationResponse } from '../models/V2RecommendationResponse';
|
|
6
7
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
8
|
export declare class AiSearchService {
|
|
@@ -29,7 +30,7 @@ export declare class AiSearchService {
|
|
|
29
30
|
* @returns V2GlobalMentorSearchResponse
|
|
30
31
|
* @throws ApiError
|
|
31
32
|
*/
|
|
32
|
-
static v2GlobalMentorSearch({ platformKey, category, includeMainPublicMentors, limit,
|
|
33
|
+
static v2GlobalMentorSearch({ platformKey, category, includeMainPublicMentors, limit, llmProviders, offset, query, tenant, }: {
|
|
33
34
|
/**
|
|
34
35
|
* Platform key for RBAC enforcement
|
|
35
36
|
*/
|
|
@@ -47,9 +48,9 @@ export declare class AiSearchService {
|
|
|
47
48
|
*/
|
|
48
49
|
limit?: number;
|
|
49
50
|
/**
|
|
50
|
-
* LLM
|
|
51
|
+
* LLM provider filter
|
|
51
52
|
*/
|
|
52
|
-
|
|
53
|
+
llmProviders?: string;
|
|
53
54
|
/**
|
|
54
55
|
* Number of results to skip
|
|
55
56
|
*/
|
|
@@ -132,6 +133,84 @@ export declare class AiSearchService {
|
|
|
132
133
|
*/
|
|
133
134
|
uniqueId?: string;
|
|
134
135
|
}): CancelablePromise<MentorSearchResponse>;
|
|
136
|
+
/**
|
|
137
|
+
* Get mentors created by a specific user
|
|
138
|
+
*
|
|
139
|
+
* Get mentors created by a specific user within a given organization/platform.
|
|
140
|
+
* This endpoint provides a personalized view of the user's own mentors with
|
|
141
|
+
* support for filtering, pagination, and detailed mentor information.
|
|
142
|
+
*
|
|
143
|
+
* **Authentication Required:**
|
|
144
|
+
* - username: Required for personalized mentor access
|
|
145
|
+
* - platform_key: Required for tenant-specific content
|
|
146
|
+
*
|
|
147
|
+
* **Features:**
|
|
148
|
+
* - User's own mentors only
|
|
149
|
+
* - Personalization data (access counts, last used)
|
|
150
|
+
* - Filtering and faceted search
|
|
151
|
+
* - Pagination support
|
|
152
|
+
* - Detail and list views
|
|
153
|
+
*
|
|
154
|
+
* @returns V2PersonalizedMentorsResponse
|
|
155
|
+
* @throws ApiError
|
|
156
|
+
*/
|
|
157
|
+
static v2PersonalizedMentors({ platformKey, audience, category, limit, llmProviders, offset, orderBy, orderDirection, query, returnFacet, tags, username, visibility, }: {
|
|
158
|
+
/**
|
|
159
|
+
* Platform key for authentication
|
|
160
|
+
*/
|
|
161
|
+
platformKey: string;
|
|
162
|
+
/**
|
|
163
|
+
* Filter by audience
|
|
164
|
+
*/
|
|
165
|
+
audience?: Array<string>;
|
|
166
|
+
/**
|
|
167
|
+
* Mentor category filter
|
|
168
|
+
*/
|
|
169
|
+
category?: string;
|
|
170
|
+
/**
|
|
171
|
+
* Number of results per page
|
|
172
|
+
*/
|
|
173
|
+
limit?: number;
|
|
174
|
+
/**
|
|
175
|
+
* Filter by LLM provider
|
|
176
|
+
*/
|
|
177
|
+
llmProviders?: Array<string>;
|
|
178
|
+
/**
|
|
179
|
+
* Number of results to skip
|
|
180
|
+
*/
|
|
181
|
+
offset?: number;
|
|
182
|
+
/**
|
|
183
|
+
* Field to sort by
|
|
184
|
+
*/
|
|
185
|
+
orderBy?: string;
|
|
186
|
+
/**
|
|
187
|
+
* Sort direction
|
|
188
|
+
*
|
|
189
|
+
* * `asc` - asc
|
|
190
|
+
* * `desc` - desc
|
|
191
|
+
*/
|
|
192
|
+
orderDirection?: 'asc' | 'desc';
|
|
193
|
+
/**
|
|
194
|
+
* Search query for personalized mentors
|
|
195
|
+
*/
|
|
196
|
+
query?: string;
|
|
197
|
+
/**
|
|
198
|
+
* Include facet data in response
|
|
199
|
+
*/
|
|
200
|
+
returnFacet?: boolean;
|
|
201
|
+
/**
|
|
202
|
+
* Filter by tags
|
|
203
|
+
*/
|
|
204
|
+
tags?: Array<string>;
|
|
205
|
+
/**
|
|
206
|
+
* Username for authentication (required for unauthenticated requests)
|
|
207
|
+
*/
|
|
208
|
+
username?: string;
|
|
209
|
+
/**
|
|
210
|
+
* Filter by visibility
|
|
211
|
+
*/
|
|
212
|
+
visibility?: Array<string>;
|
|
213
|
+
}): CancelablePromise<V2PersonalizedMentorsResponse>;
|
|
135
214
|
/**
|
|
136
215
|
* List recommendation prompts for a platform
|
|
137
216
|
* Get all recommendation prompts for a specific platform. Optionally filter by SPA URL or recommendation type.
|
|
@@ -164,6 +243,38 @@ export declare class AiSearchService {
|
|
|
164
243
|
* @throws ApiError
|
|
165
244
|
*/
|
|
166
245
|
static deletePlatformPrompt(): CancelablePromise<void>;
|
|
246
|
+
/**
|
|
247
|
+
* List recommendation prompts for a platform
|
|
248
|
+
* Get all recommendation prompts for a specific platform. Optionally filter by SPA URL or recommendation type.
|
|
249
|
+
* @returns PlatformPromptResponse
|
|
250
|
+
* @throws ApiError
|
|
251
|
+
*/
|
|
252
|
+
static listPlatformPrompts2(): CancelablePromise<Array<PlatformPromptResponse>>;
|
|
253
|
+
/**
|
|
254
|
+
* Create a new recommendation prompt
|
|
255
|
+
* Create a new recommendation prompt for a platform and SPA.
|
|
256
|
+
* @returns PlatformPromptResponse
|
|
257
|
+
* @throws ApiError
|
|
258
|
+
*/
|
|
259
|
+
static createPlatformPrompt2({ requestBody, }: {
|
|
260
|
+
requestBody?: PlatformPrompt;
|
|
261
|
+
}): CancelablePromise<PlatformPromptResponse>;
|
|
262
|
+
/**
|
|
263
|
+
* Update an existing recommendation prompt
|
|
264
|
+
* Update an existing prompt by ID. Must provide platform_key to verify ownership.
|
|
265
|
+
* @returns PlatformPromptResponse
|
|
266
|
+
* @throws ApiError
|
|
267
|
+
*/
|
|
268
|
+
static updatePlatformPrompt2({ requestBody, }: {
|
|
269
|
+
requestBody?: PlatformPrompt;
|
|
270
|
+
}): CancelablePromise<PlatformPromptResponse>;
|
|
271
|
+
/**
|
|
272
|
+
* Delete a recommendation prompt
|
|
273
|
+
* Delete a recommendation prompt by ID. Must provide platform_key to verify ownership. This permanently removes the prompt.
|
|
274
|
+
* @returns void
|
|
275
|
+
* @throws ApiError
|
|
276
|
+
*/
|
|
277
|
+
static deletePlatformPrompt2(): CancelablePromise<void>;
|
|
167
278
|
/**
|
|
168
279
|
* Generate AI-driven course recommendations
|
|
169
280
|
*
|
|
@@ -195,11 +306,7 @@ export declare class AiSearchService {
|
|
|
195
306
|
* @returns V2RecommendationResponse
|
|
196
307
|
* @throws ApiError
|
|
197
308
|
*/
|
|
198
|
-
static v2CourseRecommendations({
|
|
199
|
-
/**
|
|
200
|
-
* Platform key for tenant-scoped recommendations
|
|
201
|
-
*/
|
|
202
|
-
platformKey: string;
|
|
309
|
+
static v2CourseRecommendations({ assessmentId, contextType, difficultyLevels, domains, includeMainCatalog, includeUserHistory, includeUserSkills, k, limit, page, pageSize, platformKey, platformOrg, rankingPrompt, rankingStrategy, recommendationType, searchTerms, spaUrl, triggerSource, useLlmRanking, useRagSearch, }: {
|
|
203
310
|
/**
|
|
204
311
|
* Assessment ID if triggered by assessment completion
|
|
205
312
|
*/
|
|
@@ -244,6 +351,14 @@ export declare class AiSearchService {
|
|
|
244
351
|
* Number of recommendations per page (max 100)
|
|
245
352
|
*/
|
|
246
353
|
pageSize?: number;
|
|
354
|
+
/**
|
|
355
|
+
* Platform key for tenant-scoped recommendations
|
|
356
|
+
*/
|
|
357
|
+
platformKey?: string;
|
|
358
|
+
/**
|
|
359
|
+
* Platform org identifier (optional - avoids database lookup if provided)
|
|
360
|
+
*/
|
|
361
|
+
platformOrg?: string | null;
|
|
247
362
|
/**
|
|
248
363
|
* Custom prompt for LLM ranking (only if ranking_strategy='custom'). Define how the LLM should evaluate and order the recommendations.
|
|
249
364
|
*/
|
|
@@ -258,7 +373,7 @@ export declare class AiSearchService {
|
|
|
258
373
|
*/
|
|
259
374
|
rankingStrategy?: 'relevance' | 'difficulty' | 'personalized' | 'custom';
|
|
260
375
|
/**
|
|
261
|
-
* Type of resource to recommend (catalog
|
|
376
|
+
* Type of resource to recommend. Catalog types (courses/programs/resources/pathways) will use the platform's 'catalog' prompt category if configured.
|
|
262
377
|
*
|
|
263
378
|
* * `mentors` - Mentor Recommendations
|
|
264
379
|
* * `courses` - Course Recommendations
|
|
@@ -11,6 +11,7 @@ import type { MentorPolicy } from '../models/MentorPolicy';
|
|
|
11
11
|
import type { PaginatedRbacGroupList } from '../models/PaginatedRbacGroupList';
|
|
12
12
|
import type { PaginatedRbacPolicyList } from '../models/PaginatedRbacPolicyList';
|
|
13
13
|
import type { PaginatedRbacRoleList } from '../models/PaginatedRbacRoleList';
|
|
14
|
+
import type { PatchedPlatformPublicImageAsset } from '../models/PatchedPlatformPublicImageAsset';
|
|
14
15
|
import type { PatchedPlatformPublicMetadata } from '../models/PatchedPlatformPublicMetadata';
|
|
15
16
|
import type { PatchedRbacGroup } from '../models/PatchedRbacGroup';
|
|
16
17
|
import type { PatchedRbacPolicy } from '../models/PatchedRbacPolicy';
|
|
@@ -23,6 +24,7 @@ import type { PlatformConfigurationSetResponse } from '../models/PlatformConfigu
|
|
|
23
24
|
import type { PlatformList } from '../models/PlatformList';
|
|
24
25
|
import type { PlatformMembershipConfig } from '../models/PlatformMembershipConfig';
|
|
25
26
|
import type { PlatformMembershipConfigPostRequest } from '../models/PlatformMembershipConfigPostRequest';
|
|
27
|
+
import type { PlatformPublicImageAsset } from '../models/PlatformPublicImageAsset';
|
|
26
28
|
import type { PlatformPublicMetadata } from '../models/PlatformPublicMetadata';
|
|
27
29
|
import type { PlatformUpdatePostRequest } from '../models/PlatformUpdatePostRequest';
|
|
28
30
|
import type { RbacGroup } from '../models/RbacGroup';
|
|
@@ -654,6 +656,70 @@ export declare class CoreService {
|
|
|
654
656
|
static corePlatformUsersPoliciesUpdate({ requestBody, }: {
|
|
655
657
|
requestBody: Array<UserPolicyUpdate>;
|
|
656
658
|
}): CancelablePromise<UserPolicyUpdateResponse>;
|
|
659
|
+
/**
|
|
660
|
+
* Shared functionality for platform public image asset views.
|
|
661
|
+
* @returns PlatformPublicImageAsset
|
|
662
|
+
* @throws ApiError
|
|
663
|
+
*/
|
|
664
|
+
static corePlatformsPublicImageAssetsList({ platformKey, }: {
|
|
665
|
+
platformKey: string;
|
|
666
|
+
}): CancelablePromise<Array<PlatformPublicImageAsset>>;
|
|
667
|
+
/**
|
|
668
|
+
* Shared functionality for platform public image asset views.
|
|
669
|
+
* @returns PlatformPublicImageAsset
|
|
670
|
+
* @throws ApiError
|
|
671
|
+
*/
|
|
672
|
+
static corePlatformsPublicImageAssetsCreate({ platformKey, requestBody, }: {
|
|
673
|
+
platformKey: string;
|
|
674
|
+
requestBody: PlatformPublicImageAsset;
|
|
675
|
+
}): CancelablePromise<PlatformPublicImageAsset>;
|
|
676
|
+
/**
|
|
677
|
+
* Shared functionality for platform public image asset views.
|
|
678
|
+
* @returns PlatformPublicImageAsset
|
|
679
|
+
* @throws ApiError
|
|
680
|
+
*/
|
|
681
|
+
static corePlatformsPublicImageAssetsRetrieve({ assetId, platformKey, }: {
|
|
682
|
+
assetId: number;
|
|
683
|
+
platformKey: string;
|
|
684
|
+
}): CancelablePromise<PlatformPublicImageAsset>;
|
|
685
|
+
/**
|
|
686
|
+
* Shared functionality for platform public image asset views.
|
|
687
|
+
* @returns PlatformPublicImageAsset
|
|
688
|
+
* @throws ApiError
|
|
689
|
+
*/
|
|
690
|
+
static corePlatformsPublicImageAssetsUpdate({ assetId, platformKey, requestBody, }: {
|
|
691
|
+
assetId: number;
|
|
692
|
+
platformKey: string;
|
|
693
|
+
requestBody: PlatformPublicImageAsset;
|
|
694
|
+
}): CancelablePromise<PlatformPublicImageAsset>;
|
|
695
|
+
/**
|
|
696
|
+
* Shared functionality for platform public image asset views.
|
|
697
|
+
* @returns PlatformPublicImageAsset
|
|
698
|
+
* @throws ApiError
|
|
699
|
+
*/
|
|
700
|
+
static corePlatformsPublicImageAssetsPartialUpdate({ assetId, platformKey, requestBody, }: {
|
|
701
|
+
assetId: number;
|
|
702
|
+
platformKey: string;
|
|
703
|
+
requestBody?: PatchedPlatformPublicImageAsset;
|
|
704
|
+
}): CancelablePromise<PlatformPublicImageAsset>;
|
|
705
|
+
/**
|
|
706
|
+
* Shared functionality for platform public image asset views.
|
|
707
|
+
* @returns void
|
|
708
|
+
* @throws ApiError
|
|
709
|
+
*/
|
|
710
|
+
static corePlatformsPublicImageAssetsDestroy({ assetId, platformKey, }: {
|
|
711
|
+
assetId: number;
|
|
712
|
+
platformKey: string;
|
|
713
|
+
}): CancelablePromise<void>;
|
|
714
|
+
/**
|
|
715
|
+
* Shared functionality for platform public image asset views.
|
|
716
|
+
* @returns any
|
|
717
|
+
* @throws ApiError
|
|
718
|
+
*/
|
|
719
|
+
static corePlatformsPublicImageAssetsFileRetrieve({ assetId, platformKey, }: {
|
|
720
|
+
assetId: number;
|
|
721
|
+
platformKey: string;
|
|
722
|
+
}): CancelablePromise<Record<string, any>>;
|
|
657
723
|
/**
|
|
658
724
|
* List RBAC groups
|
|
659
725
|
* Retrieve a list of RBAC groups. Can be filtered by platform_key.
|