@iblai/iblai-api 4.305.0-core → 4.306.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.
- package/dist/index.cjs.js +1342 -207
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1343 -208
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1342 -207
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +25 -1
- package/dist/types/models/KindEnum.d.ts +8 -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/PatchedPlatformApplicationFormUpdate.d.ts +12 -0
- package/dist/types/models/PatchedPlatformApplicationNote.d.ts +8 -0
- package/dist/types/models/PatchedPlatformApplicationPlacementUpdate.d.ts +12 -0
- package/dist/types/models/PatchedPlatformApplicationUpdate.d.ts +6 -0
- package/dist/types/models/PlatformApplicationAdminSubmit.d.ts +6 -0
- package/dist/types/models/PlatformApplicationAttachmentUpload.d.ts +8 -0
- package/dist/types/models/PlatformApplicationCandidateLink.d.ts +8 -0
- package/dist/types/models/PlatformApplicationCourseAssignment.d.ts +7 -0
- package/dist/types/models/PlatformApplicationCourseAssignmentItem.d.ts +10 -0
- package/dist/types/models/PlatformApplicationCreate.d.ts +8 -0
- package/dist/types/models/PlatformApplicationDetail.d.ts +7 -0
- package/dist/types/models/PlatformApplicationFeeAction.d.ts +11 -0
- package/dist/types/models/PlatformApplicationFeeActionActionEnum.d.ts +12 -0
- package/dist/types/models/PlatformApplicationFormCreate.d.ts +12 -0
- package/dist/types/models/PlatformApplicationFormDetail.d.ts +9 -0
- package/dist/types/models/PlatformApplicationNote.d.ts +8 -0
- package/dist/types/models/PlatformApplicationPlacementCreate.d.ts +8 -0
- package/dist/types/models/PlatformApplicationPlacementItem.d.ts +11 -0
- package/dist/types/models/PlatformApplicationPlacementUpdateStatusEnum.d.ts +16 -0
- package/dist/types/models/PlatformApplicationSubmit.d.ts +6 -0
- package/dist/types/models/PlatformApplicationTransition.d.ts +11 -0
- package/dist/types/models/PlatformApplicationTransitionActionEnum.d.ts +16 -0
- package/dist/types/models/PlatformApplicationWaiver.d.ts +9 -0
- package/dist/types/models/{Type4b7Enum.d.ts → TypeB29Enum.d.ts} +3 -1
- package/dist/types/services/CatalogService.d.ts +648 -0
- package/dist/types/services/CoreService.d.ts +14 -0
- package/package.json +1 -1
- package/sdk_schema.yml +1893 -5
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +25 -1
- package/src/models/KindEnum.ts +12 -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/PatchedPlatformApplicationFormUpdate.ts +17 -0
- package/src/models/PatchedPlatformApplicationNote.ts +13 -0
- package/src/models/PatchedPlatformApplicationPlacementUpdate.ts +17 -0
- package/src/models/PatchedPlatformApplicationUpdate.ts +11 -0
- package/src/models/PlatformApplicationAdminSubmit.ts +11 -0
- package/src/models/PlatformApplicationAttachmentUpload.ts +13 -0
- package/src/models/PlatformApplicationCandidateLink.ts +13 -0
- package/src/models/PlatformApplicationCourseAssignment.ts +12 -0
- package/src/models/PlatformApplicationCourseAssignmentItem.ts +15 -0
- package/src/models/PlatformApplicationCreate.ts +13 -0
- package/src/models/PlatformApplicationDetail.ts +12 -0
- package/src/models/PlatformApplicationFeeAction.ts +16 -0
- package/src/models/PlatformApplicationFeeActionActionEnum.ts +16 -0
- package/src/models/PlatformApplicationFormCreate.ts +17 -0
- package/src/models/PlatformApplicationFormDetail.ts +14 -0
- package/src/models/PlatformApplicationNote.ts +13 -0
- package/src/models/PlatformApplicationPlacementCreate.ts +13 -0
- package/src/models/PlatformApplicationPlacementItem.ts +16 -0
- package/src/models/PlatformApplicationPlacementUpdateStatusEnum.ts +20 -0
- package/src/models/PlatformApplicationSubmit.ts +11 -0
- package/src/models/PlatformApplicationTransition.ts +16 -0
- package/src/models/PlatformApplicationTransitionActionEnum.ts +20 -0
- package/src/models/PlatformApplicationWaiver.ts +14 -0
- package/src/models/{Type4b7Enum.ts → TypeB29Enum.ts} +3 -1
- package/src/services/CatalogService.ts +1196 -0
- package/src/services/CoreService.ts +28 -0
package/src/core/OpenAPI.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -200,6 +200,7 @@ export type { ItemSubscription } from './models/ItemSubscription';
|
|
|
200
200
|
export type { ItemSubscriptionList } from './models/ItemSubscriptionList';
|
|
201
201
|
export type { ItemTypeCommission } from './models/ItemTypeCommission';
|
|
202
202
|
export { ItemTypeEnum } from './models/ItemTypeEnum';
|
|
203
|
+
export { KindEnum } from './models/KindEnum';
|
|
203
204
|
export type { LauncherViewPostRequest } from './models/LauncherViewPostRequest';
|
|
204
205
|
export type { LeadSource } from './models/LeadSource';
|
|
205
206
|
export type { LearnerAnalyticsResponse } from './models/LearnerAnalyticsResponse';
|
|
@@ -313,6 +314,10 @@ export type { PatchedPerson } from './models/PatchedPerson';
|
|
|
313
314
|
export type { PatchedPipeline } from './models/PatchedPipeline';
|
|
314
315
|
export type { PatchedPipelineStage } from './models/PatchedPipelineStage';
|
|
315
316
|
export type { PatchedPlatformApiKey } from './models/PatchedPlatformApiKey';
|
|
317
|
+
export type { PatchedPlatformApplicationFormUpdate } from './models/PatchedPlatformApplicationFormUpdate';
|
|
318
|
+
export type { PatchedPlatformApplicationNote } from './models/PatchedPlatformApplicationNote';
|
|
319
|
+
export type { PatchedPlatformApplicationPlacementUpdate } from './models/PatchedPlatformApplicationPlacementUpdate';
|
|
320
|
+
export type { PatchedPlatformApplicationUpdate } from './models/PatchedPlatformApplicationUpdate';
|
|
316
321
|
export type { PatchedPlatformPublicImageAsset } from './models/PatchedPlatformPublicImageAsset';
|
|
317
322
|
export type { PatchedPlatformPublicMetadata } from './models/PatchedPlatformPublicMetadata';
|
|
318
323
|
export type { PatchedRbacGroup } from './models/PatchedRbacGroup';
|
|
@@ -384,6 +389,25 @@ export type { PlatformApiToken_mode_Permission } from './models/PlatformApiToken
|
|
|
384
389
|
export type { PlatformApiToken_policies_to_add_Permission } from './models/PlatformApiToken_policies_to_add_Permission';
|
|
385
390
|
export type { PlatformApiToken_policies_to_remove_Permission } from './models/PlatformApiToken_policies_to_remove_Permission';
|
|
386
391
|
export type { PlatformApiTokenFieldPermissions } from './models/PlatformApiTokenFieldPermissions';
|
|
392
|
+
export type { PlatformApplicationAdminSubmit } from './models/PlatformApplicationAdminSubmit';
|
|
393
|
+
export type { PlatformApplicationAttachmentUpload } from './models/PlatformApplicationAttachmentUpload';
|
|
394
|
+
export type { PlatformApplicationCandidateLink } from './models/PlatformApplicationCandidateLink';
|
|
395
|
+
export type { PlatformApplicationCourseAssignment } from './models/PlatformApplicationCourseAssignment';
|
|
396
|
+
export type { PlatformApplicationCourseAssignmentItem } from './models/PlatformApplicationCourseAssignmentItem';
|
|
397
|
+
export type { PlatformApplicationCreate } from './models/PlatformApplicationCreate';
|
|
398
|
+
export type { PlatformApplicationDetail } from './models/PlatformApplicationDetail';
|
|
399
|
+
export type { PlatformApplicationFeeAction } from './models/PlatformApplicationFeeAction';
|
|
400
|
+
export { PlatformApplicationFeeActionActionEnum } from './models/PlatformApplicationFeeActionActionEnum';
|
|
401
|
+
export type { PlatformApplicationFormCreate } from './models/PlatformApplicationFormCreate';
|
|
402
|
+
export type { PlatformApplicationFormDetail } from './models/PlatformApplicationFormDetail';
|
|
403
|
+
export type { PlatformApplicationNote } from './models/PlatformApplicationNote';
|
|
404
|
+
export type { PlatformApplicationPlacementCreate } from './models/PlatformApplicationPlacementCreate';
|
|
405
|
+
export type { PlatformApplicationPlacementItem } from './models/PlatformApplicationPlacementItem';
|
|
406
|
+
export { PlatformApplicationPlacementUpdateStatusEnum } from './models/PlatformApplicationPlacementUpdateStatusEnum';
|
|
407
|
+
export type { PlatformApplicationSubmit } from './models/PlatformApplicationSubmit';
|
|
408
|
+
export type { PlatformApplicationTransition } from './models/PlatformApplicationTransition';
|
|
409
|
+
export { PlatformApplicationTransitionActionEnum } from './models/PlatformApplicationTransitionActionEnum';
|
|
410
|
+
export type { PlatformApplicationWaiver } from './models/PlatformApplicationWaiver';
|
|
387
411
|
export type { PlatformConfigurationList } from './models/PlatformConfigurationList';
|
|
388
412
|
export type { PlatformConfigurationSet } from './models/PlatformConfigurationSet';
|
|
389
413
|
export type { PlatformConfigurationSetResponse } from './models/PlatformConfigurationSetResponse';
|
|
@@ -554,7 +578,7 @@ export type { TokenProxyOutputSerializerData } from './models/TokenProxyOutputSe
|
|
|
554
578
|
export type { TokenProxyUser } from './models/TokenProxyUser';
|
|
555
579
|
export type { TopContent } from './models/TopContent';
|
|
556
580
|
export { TransactionTypeEnum } from './models/TransactionTypeEnum';
|
|
557
|
-
export {
|
|
581
|
+
export { TypeB29Enum } from './models/TypeB29Enum';
|
|
558
582
|
export type { UploadedImage } from './models/UploadedImage';
|
|
559
583
|
export type { UserApp } from './models/UserApp';
|
|
560
584
|
export type { UserDefaultPlatformGetResponse } from './models/UserDefaultPlatformGetResponse';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* * `general` - general
|
|
7
|
+
* * `interview` - interview
|
|
8
|
+
*/
|
|
9
|
+
export enum KindEnum {
|
|
10
|
+
GENERAL = 'general',
|
|
11
|
+
INTERVIEW = 'interview',
|
|
12
|
+
}
|
|
@@ -11,7 +11,7 @@ import type { PeriodicFrequencyEnum } from './PeriodicFrequencyEnum';
|
|
|
11
11
|
import type { PeriodicLearnerScopeEnum } from './PeriodicLearnerScopeEnum';
|
|
12
12
|
import type { RecipientsRecipientModeEnum } from './RecipientsRecipientModeEnum';
|
|
13
13
|
import type { Spa } from './Spa';
|
|
14
|
-
import type {
|
|
14
|
+
import type { TypeB29Enum } from './TypeB29Enum';
|
|
15
15
|
/**
|
|
16
16
|
* Serializer for detailed template view and editing
|
|
17
17
|
*/
|
|
@@ -39,6 +39,7 @@ export type NotificationTemplateDetail = {
|
|
|
39
39
|
* * `DEFAULT_TEMPLATE` - Default Template
|
|
40
40
|
* * `HUMAN_SUPPORT_NOTIFICATION` - Human Support Notification
|
|
41
41
|
* * `PATHWAY_ENROLLMENT_CONFIRMATION` - Pathway Enrollment Confirmation
|
|
42
|
+
* * `PLATFORM_APPLICATION_DECISION` - Platform Application Decision
|
|
42
43
|
* * `PLATFORM_INVITATION` - Platform Invitation
|
|
43
44
|
* * `POLICY_ASSIGNMENT` - Policy Assignment
|
|
44
45
|
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
@@ -59,7 +60,7 @@ export type NotificationTemplateDetail = {
|
|
|
59
60
|
* * `USER_NOTIF_USER_INACTIVITY` - User Notif User Inactivity
|
|
60
61
|
* * `USER_NOTIF_USER_REGISTRATION` - User Notif User Registration
|
|
61
62
|
*/
|
|
62
|
-
readonly type: (
|
|
63
|
+
readonly type: (TypeB29Enum | NullEnum) | null;
|
|
63
64
|
/**
|
|
64
65
|
* Template display name
|
|
65
66
|
*/
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { BlankEnum } from './BlankEnum';
|
|
6
6
|
import type { NullEnum } from './NullEnum';
|
|
7
|
-
import type {
|
|
7
|
+
import type { TypeB29Enum } from './TypeB29Enum';
|
|
8
8
|
/**
|
|
9
9
|
* Serializer for listing notification templates with inheritance info
|
|
10
10
|
*/
|
|
@@ -32,6 +32,7 @@ export type NotificationTemplateList = {
|
|
|
32
32
|
* * `DEFAULT_TEMPLATE` - Default Template
|
|
33
33
|
* * `HUMAN_SUPPORT_NOTIFICATION` - Human Support Notification
|
|
34
34
|
* * `PATHWAY_ENROLLMENT_CONFIRMATION` - Pathway Enrollment Confirmation
|
|
35
|
+
* * `PLATFORM_APPLICATION_DECISION` - Platform Application Decision
|
|
35
36
|
* * `PLATFORM_INVITATION` - Platform Invitation
|
|
36
37
|
* * `POLICY_ASSIGNMENT` - Policy Assignment
|
|
37
38
|
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
@@ -52,7 +53,7 @@ export type NotificationTemplateList = {
|
|
|
52
53
|
* * `USER_NOTIF_USER_INACTIVITY` - User Notif User Inactivity
|
|
53
54
|
* * `USER_NOTIF_USER_REGISTRATION` - User Notif User Registration
|
|
54
55
|
*/
|
|
55
|
-
type?: (
|
|
56
|
+
type?: (TypeB29Enum | BlankEnum | NullEnum) | null;
|
|
56
57
|
/**
|
|
57
58
|
* A friendly name for the notification template.
|
|
58
59
|
*/
|
|
@@ -11,7 +11,7 @@ import type { PeriodicFrequencyEnum } from './PeriodicFrequencyEnum';
|
|
|
11
11
|
import type { PeriodicLearnerScopeEnum } from './PeriodicLearnerScopeEnum';
|
|
12
12
|
import type { RecipientsRecipientModeEnum } from './RecipientsRecipientModeEnum';
|
|
13
13
|
import type { Spa } from './Spa';
|
|
14
|
-
import type {
|
|
14
|
+
import type { TypeB29Enum } from './TypeB29Enum';
|
|
15
15
|
/**
|
|
16
16
|
* Serializer for detailed template view and editing
|
|
17
17
|
*/
|
|
@@ -39,6 +39,7 @@ export type PatchedNotificationTemplateDetail = {
|
|
|
39
39
|
* * `DEFAULT_TEMPLATE` - Default Template
|
|
40
40
|
* * `HUMAN_SUPPORT_NOTIFICATION` - Human Support Notification
|
|
41
41
|
* * `PATHWAY_ENROLLMENT_CONFIRMATION` - Pathway Enrollment Confirmation
|
|
42
|
+
* * `PLATFORM_APPLICATION_DECISION` - Platform Application Decision
|
|
42
43
|
* * `PLATFORM_INVITATION` - Platform Invitation
|
|
43
44
|
* * `POLICY_ASSIGNMENT` - Policy Assignment
|
|
44
45
|
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
@@ -59,7 +60,7 @@ export type PatchedNotificationTemplateDetail = {
|
|
|
59
60
|
* * `USER_NOTIF_USER_INACTIVITY` - User Notif User Inactivity
|
|
60
61
|
* * `USER_NOTIF_USER_REGISTRATION` - User Notif User Registration
|
|
61
62
|
*/
|
|
62
|
-
readonly type?: (
|
|
63
|
+
readonly type?: (TypeB29Enum | NullEnum) | null;
|
|
63
64
|
/**
|
|
64
65
|
* Template display name
|
|
65
66
|
*/
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Body for updating a platform's application form.
|
|
7
|
+
*/
|
|
8
|
+
export type PatchedPlatformApplicationFormUpdate = {
|
|
9
|
+
platform_key?: string;
|
|
10
|
+
platform_org?: string;
|
|
11
|
+
name?: string;
|
|
12
|
+
schema?: any;
|
|
13
|
+
config?: any;
|
|
14
|
+
enabled?: boolean;
|
|
15
|
+
is_default?: boolean;
|
|
16
|
+
};
|
|
17
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { KindEnum } from './KindEnum';
|
|
6
|
+
/**
|
|
7
|
+
* Body for adding/updating an internal reviewer note.
|
|
8
|
+
*/
|
|
9
|
+
export type PatchedPlatformApplicationNote = {
|
|
10
|
+
body?: string;
|
|
11
|
+
kind?: KindEnum;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { PlatformApplicationPlacementUpdateStatusEnum } from './PlatformApplicationPlacementUpdateStatusEnum';
|
|
6
|
+
/**
|
|
7
|
+
* Body for advancing a placement: status, the agent's result, an admin
|
|
8
|
+
* override, or a note. All optional; at least one must be present.
|
|
9
|
+
*/
|
|
10
|
+
export type PatchedPlatformApplicationPlacementUpdate = {
|
|
11
|
+
status?: PlatformApplicationPlacementUpdateStatusEnum;
|
|
12
|
+
result?: any;
|
|
13
|
+
override?: any;
|
|
14
|
+
session_id?: string;
|
|
15
|
+
note?: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Body for updating a draft's responses.
|
|
7
|
+
*/
|
|
8
|
+
export type PatchedPlatformApplicationUpdate = {
|
|
9
|
+
responses?: any;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Body for the admin submit-with-exceptions action.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationAdminSubmit = {
|
|
9
|
+
note?: string;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Multipart body for uploading an attachment against a file field.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationAttachmentUpload = {
|
|
9
|
+
field: string;
|
|
10
|
+
item_id?: string;
|
|
11
|
+
file: string;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Manually link an accepted candidate to an existing account; provide
|
|
7
|
+
* one of user_id or email.
|
|
8
|
+
*/
|
|
9
|
+
export type PlatformApplicationCandidateLink = {
|
|
10
|
+
user_id?: number;
|
|
11
|
+
email?: string;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { PlatformApplicationCourseAssignmentItem } from './PlatformApplicationCourseAssignmentItem';
|
|
6
|
+
/**
|
|
7
|
+
* Body for assigning courses (#2134): one or many items in a single call.
|
|
8
|
+
*/
|
|
9
|
+
export type PlatformApplicationCourseAssignment = {
|
|
10
|
+
assignments: Array<PlatformApplicationCourseAssignmentItem>;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* One course assignment: which candidate, which course, and the dates.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationCourseAssignmentItem = {
|
|
9
|
+
candidate_id: number;
|
|
10
|
+
course_id: string;
|
|
11
|
+
started?: string;
|
|
12
|
+
expired?: string;
|
|
13
|
+
placement_id?: number;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Body for creating an application draft.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationCreate = {
|
|
9
|
+
platform_key: string;
|
|
10
|
+
responses?: any;
|
|
11
|
+
form_id?: number;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Minimal schema for a submission response object.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationDetail = {
|
|
9
|
+
id: number;
|
|
10
|
+
status: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { PlatformApplicationFeeActionActionEnum } from './PlatformApplicationFeeActionActionEnum';
|
|
6
|
+
/**
|
|
7
|
+
* Admin action on a submission's application fee.
|
|
8
|
+
*/
|
|
9
|
+
export type PlatformApplicationFeeAction = {
|
|
10
|
+
action: PlatformApplicationFeeActionActionEnum;
|
|
11
|
+
amount?: string;
|
|
12
|
+
method?: string;
|
|
13
|
+
funding_source?: string;
|
|
14
|
+
note?: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* * `record_payment` - record_payment
|
|
7
|
+
* * `waive` - waive
|
|
8
|
+
* * `refund` - refund
|
|
9
|
+
* * `credit` - credit
|
|
10
|
+
*/
|
|
11
|
+
export enum PlatformApplicationFeeActionActionEnum {
|
|
12
|
+
RECORD_PAYMENT = 'record_payment',
|
|
13
|
+
WAIVE = 'waive',
|
|
14
|
+
REFUND = 'refund',
|
|
15
|
+
CREDIT = 'credit',
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Body for creating a platform's application form.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationFormCreate = {
|
|
9
|
+
platform_key: string;
|
|
10
|
+
platform_org?: string;
|
|
11
|
+
name?: string;
|
|
12
|
+
schema: any;
|
|
13
|
+
config?: any;
|
|
14
|
+
enabled?: boolean;
|
|
15
|
+
is_default?: boolean;
|
|
16
|
+
};
|
|
17
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Minimal schema for a form response object.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationFormDetail = {
|
|
9
|
+
id: number;
|
|
10
|
+
name: string;
|
|
11
|
+
version: number;
|
|
12
|
+
enabled: boolean;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { KindEnum } from './KindEnum';
|
|
6
|
+
/**
|
|
7
|
+
* Body for adding/updating an internal reviewer note.
|
|
8
|
+
*/
|
|
9
|
+
export type PlatformApplicationNote = {
|
|
10
|
+
body: string;
|
|
11
|
+
kind?: KindEnum;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { PlatformApplicationPlacementItem } from './PlatformApplicationPlacementItem';
|
|
6
|
+
/**
|
|
7
|
+
* Body for assigning placements (#2133): one or many in a single call
|
|
8
|
+
* ("individually or in bulk", PDF §9.1).
|
|
9
|
+
*/
|
|
10
|
+
export type PlatformApplicationPlacementCreate = {
|
|
11
|
+
placements: Array<PlatformApplicationPlacementItem>;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* One placement assignment: which candidate, which mentor.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationPlacementItem = {
|
|
9
|
+
candidate_id: number;
|
|
10
|
+
mentor_unique_id: string;
|
|
11
|
+
mentor_label?: string;
|
|
12
|
+
label?: string;
|
|
13
|
+
session_id?: string;
|
|
14
|
+
note?: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* * `not_assigned` - not_assigned
|
|
7
|
+
* * `assigned` - assigned
|
|
8
|
+
* * `started` - started
|
|
9
|
+
* * `completed` - completed
|
|
10
|
+
* * `reviewed` - reviewed
|
|
11
|
+
* * `confirmed` - confirmed
|
|
12
|
+
*/
|
|
13
|
+
export enum PlatformApplicationPlacementUpdateStatusEnum {
|
|
14
|
+
NOT_ASSIGNED = 'not_assigned',
|
|
15
|
+
ASSIGNED = 'assigned',
|
|
16
|
+
STARTED = 'started',
|
|
17
|
+
COMPLETED = 'completed',
|
|
18
|
+
REVIEWED = 'reviewed',
|
|
19
|
+
CONFIRMED = 'confirmed',
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Body for submitting an application.
|
|
7
|
+
*/
|
|
8
|
+
export type PlatformApplicationSubmit = {
|
|
9
|
+
responses?: any;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { PlatformApplicationTransitionActionEnum } from './PlatformApplicationTransitionActionEnum';
|
|
6
|
+
/**
|
|
7
|
+
* Body for a reviewer status transition (per-candidate or application-wide).
|
|
8
|
+
*/
|
|
9
|
+
export type PlatformApplicationTransition = {
|
|
10
|
+
action: PlatformApplicationTransitionActionEnum;
|
|
11
|
+
candidate_id?: number;
|
|
12
|
+
message?: string;
|
|
13
|
+
note?: string;
|
|
14
|
+
block?: boolean;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* * `start_review` - start_review
|
|
7
|
+
* * `request_info` - request_info
|
|
8
|
+
* * `require_interview` - require_interview
|
|
9
|
+
* * `waitlist` - waitlist
|
|
10
|
+
* * `accept` - accept
|
|
11
|
+
* * `decline` - decline
|
|
12
|
+
*/
|
|
13
|
+
export enum PlatformApplicationTransitionActionEnum {
|
|
14
|
+
START_REVIEW = 'start_review',
|
|
15
|
+
REQUEST_INFO = 'request_info',
|
|
16
|
+
REQUIRE_INTERVIEW = 'require_interview',
|
|
17
|
+
WAITLIST = 'waitlist',
|
|
18
|
+
ACCEPT = 'accept',
|
|
19
|
+
DECLINE = 'decline',
|
|
20
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* Waive (POST) or reinstate (DELETE) one required field on an application
|
|
7
|
+
* (§2.1 required items "complete or administratively waived").
|
|
8
|
+
*/
|
|
9
|
+
export type PlatformApplicationWaiver = {
|
|
10
|
+
section: string;
|
|
11
|
+
field: string;
|
|
12
|
+
reason?: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
* * `DEFAULT_TEMPLATE` - Default Template
|
|
20
20
|
* * `HUMAN_SUPPORT_NOTIFICATION` - Human Support Notification
|
|
21
21
|
* * `PATHWAY_ENROLLMENT_CONFIRMATION` - Pathway Enrollment Confirmation
|
|
22
|
+
* * `PLATFORM_APPLICATION_DECISION` - Platform Application Decision
|
|
22
23
|
* * `PLATFORM_INVITATION` - Platform Invitation
|
|
23
24
|
* * `POLICY_ASSIGNMENT` - Policy Assignment
|
|
24
25
|
* * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
* * `USER_NOTIF_USER_INACTIVITY` - User Notif User Inactivity
|
|
40
41
|
* * `USER_NOTIF_USER_REGISTRATION` - User Notif User Registration
|
|
41
42
|
*/
|
|
42
|
-
export enum
|
|
43
|
+
export enum TypeB29Enum {
|
|
43
44
|
ACTIVITY_COURSE_MILESTONE = 'ACTIVITY_COURSE_MILESTONE',
|
|
44
45
|
ACTIVITY_NEW_CONTENT = 'ACTIVITY_NEW_CONTENT',
|
|
45
46
|
ADMIN_NOTIF_COURSE_ENROLLMENT = 'ADMIN_NOTIF_COURSE_ENROLLMENT',
|
|
@@ -56,6 +57,7 @@ export enum Type4b7Enum {
|
|
|
56
57
|
DEFAULT_TEMPLATE = 'DEFAULT_TEMPLATE',
|
|
57
58
|
HUMAN_SUPPORT_NOTIFICATION = 'HUMAN_SUPPORT_NOTIFICATION',
|
|
58
59
|
PATHWAY_ENROLLMENT_CONFIRMATION = 'PATHWAY_ENROLLMENT_CONFIRMATION',
|
|
60
|
+
PLATFORM_APPLICATION_DECISION = 'PLATFORM_APPLICATION_DECISION',
|
|
59
61
|
PLATFORM_INVITATION = 'PLATFORM_INVITATION',
|
|
60
62
|
POLICY_ASSIGNMENT = 'POLICY_ASSIGNMENT',
|
|
61
63
|
PROACTIVE_LEARNER_NOTIFICATION = 'PROACTIVE_LEARNER_NOTIFICATION',
|