@iblai/iblai-api 3.48.3-core → 3.48.4-core

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/index.cjs.js +3038 -2750
  2. package/dist/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +3038 -2750
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/index.umd.js +3038 -2750
  6. package/dist/index.umd.js.map +1 -1
  7. package/dist/types/services/AnalyticsService.d.ts +42 -13
  8. package/dist/types/services/AudienceService.d.ts +345 -149
  9. package/dist/types/services/CareerService.d.ts +117 -90
  10. package/dist/types/services/CatalogService.d.ts +3735 -1072
  11. package/dist/types/services/CoreService.d.ts +421 -210
  12. package/dist/types/services/CredentialsService.d.ts +173 -138
  13. package/dist/types/services/DepartmentsService.d.ts +53 -16
  14. package/dist/types/services/EngagementService.d.ts +459 -179
  15. package/dist/types/services/FeaturesService.d.ts +16 -7
  16. package/dist/types/services/FinanceService.d.ts +49 -20
  17. package/dist/types/services/MediaResourcesService.d.ts +243 -67
  18. package/dist/types/services/NotificationBuilderService.d.ts +31 -17
  19. package/dist/types/services/NotificationService.d.ts +56 -49
  20. package/dist/types/services/OrgsService.d.ts +106 -77
  21. package/dist/types/services/OverviewService.d.ts +154 -55
  22. package/dist/types/services/PerformanceService.d.ts +132 -56
  23. package/dist/types/services/PerlearnerService.d.ts +431 -217
  24. package/dist/types/services/PlatformService.d.ts +221 -116
  25. package/dist/types/services/ProviderAssociationService.d.ts +3 -2
  26. package/dist/types/services/ProvidersService.d.ts +27 -18
  27. package/dist/types/services/ProvisionService.d.ts +3 -2
  28. package/dist/types/services/RecommendationsService.d.ts +3 -3
  29. package/dist/types/services/ReportsService.d.ts +22 -16
  30. package/dist/types/services/RolesService.d.ts +8 -6
  31. package/dist/types/services/SearchService.d.ts +305 -80
  32. package/dist/types/services/ServiceService.d.ts +33 -29
  33. package/dist/types/services/SkillsService.d.ts +40 -32
  34. package/dist/types/services/UserGroupsService.d.ts +53 -16
  35. package/package.json +1 -1
  36. package/src/services/AnalyticsService.ts +45 -16
  37. package/src/services/AudienceService.ts +380 -184
  38. package/src/services/CareerService.ts +144 -117
  39. package/src/services/CatalogService.ts +3995 -1332
  40. package/src/services/CoreService.ts +503 -286
  41. package/src/services/CredentialsService.ts +253 -173
  42. package/src/services/DepartmentsService.ts +56 -19
  43. package/src/services/EngagementService.ts +528 -236
  44. package/src/services/FeaturesService.ts +19 -10
  45. package/src/services/FinanceService.ts +54 -25
  46. package/src/services/MediaResourcesService.ts +251 -75
  47. package/src/services/NotificationBuilderService.ts +36 -22
  48. package/src/services/NotificationService.ts +73 -61
  49. package/src/services/OrgsService.ts +135 -106
  50. package/src/services/OverviewService.ts +172 -73
  51. package/src/services/PerformanceService.ts +153 -77
  52. package/src/services/PerlearnerService.ts +591 -279
  53. package/src/services/PlatformService.ts +278 -157
  54. package/src/services/ProviderAssociationService.ts +4 -3
  55. package/src/services/ProvidersService.ts +36 -27
  56. package/src/services/ProvisionService.ts +4 -3
  57. package/src/services/RecommendationsService.ts +5 -4
  58. package/src/services/ReportsService.ts +28 -22
  59. package/src/services/RolesService.ts +10 -8
  60. package/src/services/SearchService.ts +323 -98
  61. package/src/services/ServiceService.ts +49 -39
  62. package/src/services/SkillsService.ts +56 -44
  63. package/src/services/UserGroupsService.ts +56 -19
@@ -173,69 +173,157 @@ export class SearchService {
173
173
  * - Results are cached for performance
174
174
  * - The 'resources' content type is only included by default if IBL_ENABLE_RESOURCES_IN_FACET is true
175
175
  * - For debugging, add ?debug=true to see detailed information about skill matching
176
- * @param allowSkillSearch Enable skill-based search
177
- * @param alphabetical Sort alphabetically by name
178
- * @param certificate Filter by certificate type
179
- * @param content Content types to include in results
180
- * @param courseId Filter by specific course ID
181
- * @param duration Filter by course duration range
182
- * @param language Filter by content language
183
- * @param level Filter by difficulty level
184
- * @param limit Number of results per page
185
- * @param offset Starting position for pagination
186
- * @param orderAscending Sort direction
187
- * @param orderBy Field to sort results by
188
- * @param pathwayId Filter by specific pathway ID
189
- * @param price Filter by price/audit status
190
- * @param programId Filter by specific program ID
191
- * @param programType Filter by program type
192
- * @param promotion Filter by promotion status
193
- * @param query Search term to filter content by name or description
194
- * @param resourceType Filter by resource type
195
- * @param returnFacet Include facet data in response
196
- * @param returnItems Include items in programs/pathways
197
- * @param selfPaced Filter by course format
198
- * @param skillId Filter by specific skill ID
199
- * @param skills Filter by skills
200
- * @param subject Filter by subject areas
201
- * @param tags Filter by tags
202
- * @param tenant Filter by tenant/organization
203
- * @param topics Filter by topic areas
204
- * @param updateFacet Force facet update
205
176
  * @returns GlobalCatalogSearchResponse
206
177
  * @throws ApiError
207
178
  */
208
- public static searchCatalogRetrieve(
209
- allowSkillSearch: boolean = false,
210
- alphabetical: boolean = false,
179
+ public static searchCatalogRetrieve({
180
+ allowSkillSearch = false,
181
+ alphabetical = false,
182
+ certificate,
183
+ content,
184
+ courseId,
185
+ duration,
186
+ language,
187
+ level,
188
+ limit = 12,
189
+ offset,
190
+ orderAscending = false,
191
+ orderBy,
192
+ pathwayId,
193
+ price,
194
+ programId,
195
+ programType,
196
+ promotion,
197
+ query,
198
+ resourceType,
199
+ returnFacet = true,
200
+ returnItems = false,
201
+ selfPaced,
202
+ skillId,
203
+ skills,
204
+ subject,
205
+ tags,
206
+ tenant,
207
+ topics,
208
+ updateFacet,
209
+ }: {
210
+ /**
211
+ * Enable skill-based search
212
+ */
213
+ allowSkillSearch?: boolean,
214
+ /**
215
+ * Sort alphabetically by name
216
+ */
217
+ alphabetical?: boolean,
218
+ /**
219
+ * Filter by certificate type
220
+ */
211
221
  certificate?: Array<string>,
222
+ /**
223
+ * Content types to include in results
224
+ */
212
225
  content?: Array<string>,
226
+ /**
227
+ * Filter by specific course ID
228
+ */
213
229
  courseId?: string,
230
+ /**
231
+ * Filter by course duration range
232
+ */
214
233
  duration?: Array<string>,
234
+ /**
235
+ * Filter by content language
236
+ */
215
237
  language?: Array<string>,
238
+ /**
239
+ * Filter by difficulty level
240
+ */
216
241
  level?: Array<string>,
217
- limit: number = 12,
242
+ /**
243
+ * Number of results per page
244
+ */
245
+ limit?: number,
246
+ /**
247
+ * Starting position for pagination
248
+ */
218
249
  offset?: number,
219
- orderAscending: boolean = false,
250
+ /**
251
+ * Sort direction
252
+ */
253
+ orderAscending?: boolean,
254
+ /**
255
+ * Field to sort results by
256
+ */
220
257
  orderBy?: string,
258
+ /**
259
+ * Filter by specific pathway ID
260
+ */
221
261
  pathwayId?: string,
262
+ /**
263
+ * Filter by price/audit status
264
+ */
222
265
  price?: string,
266
+ /**
267
+ * Filter by specific program ID
268
+ */
223
269
  programId?: string,
270
+ /**
271
+ * Filter by program type
272
+ */
224
273
  programType?: Array<string>,
274
+ /**
275
+ * Filter by promotion status
276
+ */
225
277
  promotion?: Array<string>,
278
+ /**
279
+ * Search term to filter content by name or description
280
+ */
226
281
  query?: string,
282
+ /**
283
+ * Filter by resource type
284
+ */
227
285
  resourceType?: Array<string>,
228
- returnFacet: boolean = true,
229
- returnItems: boolean = false,
286
+ /**
287
+ * Include facet data in response
288
+ */
289
+ returnFacet?: boolean,
290
+ /**
291
+ * Include items in programs/pathways
292
+ */
293
+ returnItems?: boolean,
294
+ /**
295
+ * Filter by course format
296
+ */
230
297
  selfPaced?: Array<string>,
298
+ /**
299
+ * Filter by specific skill ID
300
+ */
231
301
  skillId?: string,
302
+ /**
303
+ * Filter by skills
304
+ */
232
305
  skills?: Array<string>,
306
+ /**
307
+ * Filter by subject areas
308
+ */
233
309
  subject?: Array<string>,
310
+ /**
311
+ * Filter by tags
312
+ */
234
313
  tags?: Array<string>,
314
+ /**
315
+ * Filter by tenant/organization
316
+ */
235
317
  tenant?: Array<string>,
318
+ /**
319
+ * Filter by topic areas
320
+ */
236
321
  topics?: Array<string>,
322
+ /**
323
+ * Force facet update
324
+ */
237
325
  updateFacet?: string,
238
- ): CancelablePromise<GlobalCatalogSearchResponse> {
326
+ }): CancelablePromise<GlobalCatalogSearchResponse> {
239
327
  return __request(OpenAPI, {
240
328
  method: 'GET',
241
329
  url: '/api/search/catalog/',
@@ -280,77 +368,174 @@ export class SearchService {
280
368
  * Determine whether to serve a detail view or a list view.
281
369
  * If any detail-identifying parameters are present (course_id, program_id, etc.)
282
370
  * the detail view is returned; otherwise the aggregated list view is returned.
283
- * @param username
284
- * @param allowSkillSearch Enable skill-based search
285
- * @param alphabetical Sort alphabetically by name
286
- * @param certificate Filter by certificate type
287
- * @param content Content types to include in results
288
- * @param courseId Retrieve a specific course by ID
289
- * @param duration Filter by course duration range
290
- * @param language Filter by content language
291
- * @param level Filter by difficulty level
292
- * @param limit Number of results per page
293
- * @param offset Starting position for pagination
294
- * @param orderAscending Sort direction
295
- * @param orderBy Field to sort results by
296
- * @param pathwayId Retrieve a specific pathway by ID
297
- * @param price Filter by price/audit status
298
- * @param programId Retrieve a specific program by ID
299
- * @param programType Filter by program type
300
- * @param promotion Filter by promotion status
301
- * @param query Search term to filter content by name or description
302
- * @param recommended Show only recommended content
303
- * @param resourceId Retrieve a specific resource by ID
304
- * @param resourceType Filter by resource type
305
- * @param returnFacet Include facet data in response
306
- * @param returnItems Include items in programs/pathways
307
- * @param roleId Retrieve a specific role by ID
308
- * @param selfPaced Filter by course format
309
- * @param skillId Retrieve a specific skill by ID
310
- * @param skills Filter by skills
311
- * @param subject Filter by subject areas
312
- * @param tags Filter by tags
313
- * @param tenant Filter by tenant/organization
314
- * @param topics Filter by topic areas
315
- * @param updateFacet Force facet update
316
371
  * @returns any
317
372
  * @throws ApiError
318
373
  */
319
- public static searchPersonalizedCatalogRetrieve(
374
+ public static searchPersonalizedCatalogRetrieve({
375
+ username,
376
+ allowSkillSearch = false,
377
+ alphabetical = false,
378
+ certificate,
379
+ content,
380
+ courseId,
381
+ duration,
382
+ language,
383
+ level,
384
+ limit = 12,
385
+ offset,
386
+ orderAscending = false,
387
+ orderBy,
388
+ pathwayId,
389
+ price,
390
+ programId,
391
+ programType,
392
+ promotion,
393
+ query,
394
+ recommended = false,
395
+ resourceId,
396
+ resourceType,
397
+ returnFacet = true,
398
+ returnItems = false,
399
+ roleId,
400
+ selfPaced,
401
+ skillId,
402
+ skills,
403
+ subject,
404
+ tags,
405
+ tenant,
406
+ topics,
407
+ updateFacet,
408
+ }: {
320
409
  username: string,
321
- allowSkillSearch: boolean = false,
322
- alphabetical: boolean = false,
410
+ /**
411
+ * Enable skill-based search
412
+ */
413
+ allowSkillSearch?: boolean,
414
+ /**
415
+ * Sort alphabetically by name
416
+ */
417
+ alphabetical?: boolean,
418
+ /**
419
+ * Filter by certificate type
420
+ */
323
421
  certificate?: Array<string>,
422
+ /**
423
+ * Content types to include in results
424
+ */
324
425
  content?: Array<string>,
426
+ /**
427
+ * Retrieve a specific course by ID
428
+ */
325
429
  courseId?: string,
430
+ /**
431
+ * Filter by course duration range
432
+ */
326
433
  duration?: Array<string>,
434
+ /**
435
+ * Filter by content language
436
+ */
327
437
  language?: Array<string>,
438
+ /**
439
+ * Filter by difficulty level
440
+ */
328
441
  level?: Array<string>,
329
- limit: number = 12,
442
+ /**
443
+ * Number of results per page
444
+ */
445
+ limit?: number,
446
+ /**
447
+ * Starting position for pagination
448
+ */
330
449
  offset?: number,
331
- orderAscending: boolean = false,
450
+ /**
451
+ * Sort direction
452
+ */
453
+ orderAscending?: boolean,
454
+ /**
455
+ * Field to sort results by
456
+ */
332
457
  orderBy?: string,
458
+ /**
459
+ * Retrieve a specific pathway by ID
460
+ */
333
461
  pathwayId?: string,
462
+ /**
463
+ * Filter by price/audit status
464
+ */
334
465
  price?: string,
466
+ /**
467
+ * Retrieve a specific program by ID
468
+ */
335
469
  programId?: string,
470
+ /**
471
+ * Filter by program type
472
+ */
336
473
  programType?: Array<string>,
474
+ /**
475
+ * Filter by promotion status
476
+ */
337
477
  promotion?: Array<string>,
478
+ /**
479
+ * Search term to filter content by name or description
480
+ */
338
481
  query?: string,
339
- recommended: boolean = false,
482
+ /**
483
+ * Show only recommended content
484
+ */
485
+ recommended?: boolean,
486
+ /**
487
+ * Retrieve a specific resource by ID
488
+ */
340
489
  resourceId?: string,
490
+ /**
491
+ * Filter by resource type
492
+ */
341
493
  resourceType?: Array<string>,
342
- returnFacet: boolean = true,
343
- returnItems: boolean = false,
494
+ /**
495
+ * Include facet data in response
496
+ */
497
+ returnFacet?: boolean,
498
+ /**
499
+ * Include items in programs/pathways
500
+ */
501
+ returnItems?: boolean,
502
+ /**
503
+ * Retrieve a specific role by ID
504
+ */
344
505
  roleId?: string,
506
+ /**
507
+ * Filter by course format
508
+ */
345
509
  selfPaced?: Array<string>,
510
+ /**
511
+ * Retrieve a specific skill by ID
512
+ */
346
513
  skillId?: string,
514
+ /**
515
+ * Filter by skills
516
+ */
347
517
  skills?: Array<string>,
518
+ /**
519
+ * Filter by subject areas
520
+ */
348
521
  subject?: Array<string>,
522
+ /**
523
+ * Filter by tags
524
+ */
349
525
  tags?: Array<string>,
526
+ /**
527
+ * Filter by tenant/organization
528
+ */
350
529
  tenant?: Array<string>,
530
+ /**
531
+ * Filter by topic areas
532
+ */
351
533
  topics?: Array<string>,
534
+ /**
535
+ * Force facet update
536
+ */
352
537
  updateFacet?: string,
353
- ): CancelablePromise<Record<string, any>> {
538
+ }): CancelablePromise<Record<string, any>> {
354
539
  return __request(OpenAPI, {
355
540
  method: 'GET',
356
541
  url: '/api/search/personalized-catalog/{username}/',
@@ -482,41 +667,81 @@ export class SearchService {
482
667
  * - The requesting user must have an active account in the specified organization
483
668
  * - When department_mode is enabled, the user must be an admin of at least one department
484
669
  * - Department filtering restricts results to users in departments where the requesting user is an admin
485
- * @param org
486
- * @param username
487
- * @param department Filter by department names
488
- * @param educationDegree Filter by degree
489
- * @param educationFieldOfStudy Filter by field of study
490
- * @param educationInstitution Filter by institution
491
- * @param includeMembershipData Include user group membership data in results
492
- * @param limit Number of results per page
493
- * @param offset Starting position for pagination
494
- * @param q Search term to filter users by name, email, or other attributes
495
- * @param userResumeCompany Filter by company
496
- * @param userResumeIndustry Filter by industry
497
- * @param userResumeJobTitle Filter by job title
498
- * @param userResumeLocation Filter by location
499
- * @param userResumeSkills Filter by skills
500
670
  * @returns UserSearchResponse
501
671
  * @throws ApiError
502
672
  */
503
- public static searchUsersOrgsUsersRetrieve(
673
+ public static searchUsersOrgsUsersRetrieve({
674
+ org,
675
+ username,
676
+ department,
677
+ educationDegree,
678
+ educationFieldOfStudy,
679
+ educationInstitution,
680
+ includeMembershipData = false,
681
+ limit = 10,
682
+ offset,
683
+ q,
684
+ userResumeCompany,
685
+ userResumeIndustry,
686
+ userResumeJobTitle,
687
+ userResumeLocation,
688
+ userResumeSkills,
689
+ }: {
504
690
  org: string,
505
691
  username: string,
692
+ /**
693
+ * Filter by department names
694
+ */
506
695
  department?: Array<string>,
696
+ /**
697
+ * Filter by degree
698
+ */
507
699
  educationDegree?: string,
700
+ /**
701
+ * Filter by field of study
702
+ */
508
703
  educationFieldOfStudy?: string,
704
+ /**
705
+ * Filter by institution
706
+ */
509
707
  educationInstitution?: string,
510
- includeMembershipData: boolean = false,
511
- limit: number = 10,
708
+ /**
709
+ * Include user group membership data in results
710
+ */
711
+ includeMembershipData?: boolean,
712
+ /**
713
+ * Number of results per page
714
+ */
715
+ limit?: number,
716
+ /**
717
+ * Starting position for pagination
718
+ */
512
719
  offset?: number,
720
+ /**
721
+ * Search term to filter users by name, email, or other attributes
722
+ */
513
723
  q?: string,
724
+ /**
725
+ * Filter by company
726
+ */
514
727
  userResumeCompany?: string,
728
+ /**
729
+ * Filter by industry
730
+ */
515
731
  userResumeIndustry?: string,
732
+ /**
733
+ * Filter by job title
734
+ */
516
735
  userResumeJobTitle?: string,
736
+ /**
737
+ * Filter by location
738
+ */
517
739
  userResumeLocation?: string,
740
+ /**
741
+ * Filter by skills
742
+ */
518
743
  userResumeSkills?: string,
519
- ): CancelablePromise<UserSearchResponse> {
744
+ }): CancelablePromise<UserSearchResponse> {
520
745
  return __request(OpenAPI, {
521
746
  method: 'GET',
522
747
  url: '/api/search/users/orgs/{org}/users/{username}/',