@iblai/iblai-api 4.328.1-core → 4.329.0-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.
@@ -68,6 +68,7 @@ import type { PaginatedSkill } from '../models/PaginatedSkill';
68
68
  import type { PaginatedUserLicense } from '../models/PaginatedUserLicense';
69
69
  import type { PaginatedUserLicenseAssignment } from '../models/PaginatedUserLicenseAssignment';
70
70
  import type { PaginatedUserLicenseGroupAssignment } from '../models/PaginatedUserLicenseGroupAssignment';
71
+ import type { PatchedPlacementAssessmentUpdate } from '../models/PatchedPlacementAssessmentUpdate';
71
72
  import type { PatchedPlatformApplicationFormUpdate } from '../models/PatchedPlatformApplicationFormUpdate';
72
73
  import type { PatchedPlatformApplicationNote } from '../models/PatchedPlatformApplicationNote';
73
74
  import type { PatchedPlatformApplicationPlacementUpdate } from '../models/PatchedPlatformApplicationPlacementUpdate';
@@ -85,6 +86,10 @@ import type { PathwaySelfEnrollmentRequest } from '../models/PathwaySelfEnrollme
85
86
  import type { PathwaySuggestionBulkCreate } from '../models/PathwaySuggestionBulkCreate';
86
87
  import type { PathwaySuggestionCreate } from '../models/PathwaySuggestionCreate';
87
88
  import type { PathwaySuggestionDetail } from '../models/PathwaySuggestionDetail';
89
+ import type { PlacementAssessment } from '../models/PlacementAssessment';
90
+ import type { PlacementCourseAssignmentCreate } from '../models/PlacementCourseAssignmentCreate';
91
+ import type { PlacementProgramAssignmentCreate } from '../models/PlacementProgramAssignmentCreate';
92
+ import type { PlacementRecordCreate } from '../models/PlacementRecordCreate';
88
93
  import type { PlatformApplicationAdminSubmit } from '../models/PlatformApplicationAdminSubmit';
89
94
  import type { PlatformApplicationAttachmentUpload } from '../models/PlatformApplicationAttachmentUpload';
90
95
  import type { PlatformApplicationCandidateLink } from '../models/PlatformApplicationCandidateLink';
@@ -4520,6 +4525,150 @@ export declare class CatalogService {
4520
4525
  */
4521
4526
  visible?: boolean;
4522
4527
  }): CancelablePromise<PathwayDeleteResponse>;
4528
+ /**
4529
+ * A platform's placement assessments (#2280): list and create.
4530
+ * @returns any Assessments for the platform
4531
+ * @throws ApiError
4532
+ */
4533
+ static catalogPlacementsAssessmentsRetrieve(): CancelablePromise<any>;
4534
+ /**
4535
+ * A platform's placement assessments (#2280): list and create.
4536
+ * @returns any Assessment created
4537
+ * @throws ApiError
4538
+ */
4539
+ static catalogPlacementsAssessmentsCreate({ requestBody, }: {
4540
+ requestBody: PlacementAssessment;
4541
+ }): CancelablePromise<any>;
4542
+ /**
4543
+ * A single placement assessment: view, edit, or delete.
4544
+ * @returns any Assessment
4545
+ * @throws ApiError
4546
+ */
4547
+ static catalogPlacementsAssessmentsRetrieve2({ assessmentId, }: {
4548
+ assessmentId: string;
4549
+ }): CancelablePromise<any>;
4550
+ /**
4551
+ * A single placement assessment: view, edit, or delete.
4552
+ * @returns any Assessment updated
4553
+ * @throws ApiError
4554
+ */
4555
+ static catalogPlacementsAssessmentsPartialUpdate({ assessmentId, requestBody, }: {
4556
+ assessmentId: string;
4557
+ requestBody?: PatchedPlacementAssessmentUpdate;
4558
+ }): CancelablePromise<any>;
4559
+ /**
4560
+ * A single placement assessment: view, edit, or delete.
4561
+ * @returns void
4562
+ * @throws ApiError
4563
+ */
4564
+ static catalogPlacementsAssessmentsDestroy({ assessmentId, }: {
4565
+ assessmentId: string;
4566
+ }): CancelablePromise<void>;
4567
+ /**
4568
+ * Course assignments on a platform (#2280): list (optionally by user), and
4569
+ * grant a course to a user. Each grant issues a ``CourseInvitation`` the
4570
+ * existing pipeline enrolls.
4571
+ * @returns any Course assignments
4572
+ * @throws ApiError
4573
+ */
4574
+ static catalogPlacementsCourseAssignmentsRetrieve({ platformKey, userId, }: {
4575
+ platformKey: string;
4576
+ }): CancelablePromise<any>;
4577
+ /**
4578
+ * Course assignments on a platform (#2280): list (optionally by user), and
4579
+ * grant a course to a user. Each grant issues a ``CourseInvitation`` the
4580
+ * existing pipeline enrolls.
4581
+ * @returns any Course assigned
4582
+ * @throws ApiError
4583
+ */
4584
+ static catalogPlacementsCourseAssignmentsCreate({ platformKey, requestBody, userId, }: {
4585
+ platformKey: string;
4586
+ requestBody: PlacementCourseAssignmentCreate;
4587
+ }): CancelablePromise<any>;
4588
+ /**
4589
+ * Remove one course assignment: deactivate the record and cancel its
4590
+ * invitation when the student has not yet enrolled through it.
4591
+ * @returns void
4592
+ * @throws ApiError
4593
+ */
4594
+ static catalogPlacementsCourseAssignmentsDestroy({ assignmentId, }: {
4595
+ assignmentId: string;
4596
+ }): CancelablePromise<void>;
4597
+ /**
4598
+ * Program assignments on a platform (#2280): list (optionally by user), and
4599
+ * grant a program to a user. Each grant issues a ``ProgramInvitation``.
4600
+ * @returns any Program assignments
4601
+ * @throws ApiError
4602
+ */
4603
+ static catalogPlacementsProgramAssignmentsRetrieve({ platformKey, userId, }: {
4604
+ platformKey: string;
4605
+ }): CancelablePromise<any>;
4606
+ /**
4607
+ * Program assignments on a platform (#2280): list (optionally by user), and
4608
+ * grant a program to a user. Each grant issues a ``ProgramInvitation``.
4609
+ * @returns any Program assigned
4610
+ * @throws ApiError
4611
+ */
4612
+ static catalogPlacementsProgramAssignmentsCreate({ platformKey, requestBody, userId, }: {
4613
+ platformKey: string;
4614
+ requestBody: PlacementProgramAssignmentCreate;
4615
+ }): CancelablePromise<any>;
4616
+ /**
4617
+ * Remove one program assignment: deactivate the record and cancel its
4618
+ * invitation when the student has not yet enrolled through it.
4619
+ * @returns void
4620
+ * @throws ApiError
4621
+ */
4622
+ static catalogPlacementsProgramAssignmentsDestroy({ assignmentId, }: {
4623
+ assignmentId: string;
4624
+ }): CancelablePromise<void>;
4625
+ /**
4626
+ * Placement records on a platform (#2280): list (filter by user, assessment,
4627
+ * or status), and assign a configured assessment to a user.
4628
+ * @returns any Placement records
4629
+ * @throws ApiError
4630
+ */
4631
+ static catalogPlacementsRecordsRetrieve({ platformKey, assessmentId, status, userId, }: {
4632
+ platformKey: string;
4633
+ assessmentId?: number; /**
4634
+ * * `not_assigned` - not_assigned
4635
+ * * `assigned` - assigned
4636
+ * * `started` - started
4637
+ * * `completed` - completed
4638
+ * * `reviewed` - reviewed
4639
+ * * `confirmed` - confirmed
4640
+ */
4641
+ status?: 'not_assigned' | 'assigned' | 'started' | 'completed' | 'reviewed' | 'confirmed';
4642
+ }): CancelablePromise<any>;
4643
+ /**
4644
+ * Placement records on a platform (#2280): list (filter by user, assessment,
4645
+ * or status), and assign a configured assessment to a user.
4646
+ * @returns any Placement assigned
4647
+ * @throws ApiError
4648
+ */
4649
+ static catalogPlacementsRecordsCreate({ platformKey, requestBody, assessmentId, status, userId, }: {
4650
+ platformKey: string;
4651
+ requestBody: PlacementRecordCreate;
4652
+ assessmentId?: number; /**
4653
+ * * `not_assigned` - not_assigned
4654
+ * * `assigned` - assigned
4655
+ * * `started` - started
4656
+ * * `completed` - completed
4657
+ * * `reviewed` - reviewed
4658
+ * * `confirmed` - confirmed
4659
+ */
4660
+ status?: 'not_assigned' | 'assigned' | 'started' | 'completed' | 'reviewed' | 'confirmed';
4661
+ }): CancelablePromise<any>;
4662
+ /**
4663
+ * Advance a single placement record: status, the agent's result, an admin
4664
+ * override, or a note.
4665
+ * @returns any Record updated
4666
+ * @throws ApiError
4667
+ */
4668
+ static catalogPlacementsRecordsPartialUpdate({ recordId, requestBody, }: {
4669
+ recordId: string;
4670
+ requestBody?: PatchedPlatformApplicationPlacementUpdate;
4671
+ }): CancelablePromise<any>;
4523
4672
  /**
4524
4673
  * Retrieve programs matching query parameters. Limited parameters include program_id, name, slug, enabled, and org.
4525
4674
  * @returns Program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.328.1-core",
3
+ "version": "4.329.0-core",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",