@iblai/iblai-api 2025.10.27-google-calendar-support-2-core → 2025.11.3-teams-bot-renovation-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/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.73.0-core
4
+ version: 4.80.0-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/analytics/content/:
@@ -16346,6 +16346,225 @@ paths:
16346
16346
  schema:
16347
16347
  $ref: '#/components/schemas/UserPolicyUpdateForbidden'
16348
16348
  description: ''
16349
+ /api/core/platforms/{platform_key}/public-image-assets/:
16350
+ get:
16351
+ operationId: core_platforms_public_image_assets_list
16352
+ description: Shared functionality for platform public image asset views.
16353
+ parameters:
16354
+ - in: path
16355
+ name: platform_key
16356
+ schema:
16357
+ type: string
16358
+ required: true
16359
+ tags:
16360
+ - core
16361
+ security:
16362
+ - PlatformApiKeyAuthentication: []
16363
+ responses:
16364
+ '200':
16365
+ content:
16366
+ application/json:
16367
+ schema:
16368
+ type: array
16369
+ items:
16370
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16371
+ description: ''
16372
+ post:
16373
+ operationId: core_platforms_public_image_assets_create
16374
+ description: Shared functionality for platform public image asset views.
16375
+ parameters:
16376
+ - in: path
16377
+ name: platform_key
16378
+ schema:
16379
+ type: string
16380
+ required: true
16381
+ tags:
16382
+ - core
16383
+ requestBody:
16384
+ content:
16385
+ application/json:
16386
+ schema:
16387
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16388
+ application/scim+json:
16389
+ schema:
16390
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16391
+ application/x-www-form-urlencoded:
16392
+ schema:
16393
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16394
+ multipart/form-data:
16395
+ schema:
16396
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16397
+ '*/*':
16398
+ schema:
16399
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16400
+ required: true
16401
+ security:
16402
+ - PlatformApiKeyAuthentication: []
16403
+ responses:
16404
+ '201':
16405
+ content:
16406
+ application/json:
16407
+ schema:
16408
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16409
+ description: ''
16410
+ /api/core/platforms/{platform_key}/public-image-assets/{asset_id}/:
16411
+ get:
16412
+ operationId: core_platforms_public_image_assets_retrieve
16413
+ description: Shared functionality for platform public image asset views.
16414
+ parameters:
16415
+ - in: path
16416
+ name: asset_id
16417
+ schema:
16418
+ type: integer
16419
+ required: true
16420
+ - in: path
16421
+ name: platform_key
16422
+ schema:
16423
+ type: string
16424
+ required: true
16425
+ tags:
16426
+ - core
16427
+ security:
16428
+ - PlatformApiKeyAuthentication: []
16429
+ responses:
16430
+ '200':
16431
+ content:
16432
+ application/json:
16433
+ schema:
16434
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16435
+ description: ''
16436
+ put:
16437
+ operationId: core_platforms_public_image_assets_update
16438
+ description: Shared functionality for platform public image asset views.
16439
+ parameters:
16440
+ - in: path
16441
+ name: asset_id
16442
+ schema:
16443
+ type: integer
16444
+ required: true
16445
+ - in: path
16446
+ name: platform_key
16447
+ schema:
16448
+ type: string
16449
+ required: true
16450
+ tags:
16451
+ - core
16452
+ requestBody:
16453
+ content:
16454
+ application/json:
16455
+ schema:
16456
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16457
+ application/scim+json:
16458
+ schema:
16459
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16460
+ application/x-www-form-urlencoded:
16461
+ schema:
16462
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16463
+ multipart/form-data:
16464
+ schema:
16465
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16466
+ '*/*':
16467
+ schema:
16468
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16469
+ required: true
16470
+ security:
16471
+ - PlatformApiKeyAuthentication: []
16472
+ responses:
16473
+ '200':
16474
+ content:
16475
+ application/json:
16476
+ schema:
16477
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16478
+ description: ''
16479
+ patch:
16480
+ operationId: core_platforms_public_image_assets_partial_update
16481
+ description: Shared functionality for platform public image asset views.
16482
+ parameters:
16483
+ - in: path
16484
+ name: asset_id
16485
+ schema:
16486
+ type: integer
16487
+ required: true
16488
+ - in: path
16489
+ name: platform_key
16490
+ schema:
16491
+ type: string
16492
+ required: true
16493
+ tags:
16494
+ - core
16495
+ requestBody:
16496
+ content:
16497
+ application/json:
16498
+ schema:
16499
+ $ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
16500
+ application/scim+json:
16501
+ schema:
16502
+ $ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
16503
+ application/x-www-form-urlencoded:
16504
+ schema:
16505
+ $ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
16506
+ multipart/form-data:
16507
+ schema:
16508
+ $ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
16509
+ '*/*':
16510
+ schema:
16511
+ $ref: '#/components/schemas/PatchedPlatformPublicImageAsset'
16512
+ security:
16513
+ - PlatformApiKeyAuthentication: []
16514
+ responses:
16515
+ '200':
16516
+ content:
16517
+ application/json:
16518
+ schema:
16519
+ $ref: '#/components/schemas/PlatformPublicImageAsset'
16520
+ description: ''
16521
+ delete:
16522
+ operationId: core_platforms_public_image_assets_destroy
16523
+ description: Shared functionality for platform public image asset views.
16524
+ parameters:
16525
+ - in: path
16526
+ name: asset_id
16527
+ schema:
16528
+ type: integer
16529
+ required: true
16530
+ - in: path
16531
+ name: platform_key
16532
+ schema:
16533
+ type: string
16534
+ required: true
16535
+ tags:
16536
+ - core
16537
+ security:
16538
+ - PlatformApiKeyAuthentication: []
16539
+ responses:
16540
+ '204':
16541
+ description: No response body
16542
+ /api/core/platforms/{platform_key}/public-image-assets/{asset_id}/file/:
16543
+ get:
16544
+ operationId: core_platforms_public_image_assets_file_retrieve
16545
+ description: Shared functionality for platform public image asset views.
16546
+ parameters:
16547
+ - in: path
16548
+ name: asset_id
16549
+ schema:
16550
+ type: integer
16551
+ required: true
16552
+ - in: path
16553
+ name: platform_key
16554
+ schema:
16555
+ type: string
16556
+ required: true
16557
+ tags:
16558
+ - core
16559
+ responses:
16560
+ '200':
16561
+ content:
16562
+ application/json:
16563
+ schema:
16564
+ type: object
16565
+ additionalProperties: {}
16566
+ description: Unspecified response body
16567
+ description: ''
16349
16568
  /api/core/rbac/groups/:
16350
16569
  get:
16351
16570
  operationId: core_rbac_groups_list
@@ -35507,6 +35726,7 @@ components:
35507
35726
  * `PROGRAM_INVITATION` - Program Invitation
35508
35727
  * `COURSE_INVITATION` - Course Invitation
35509
35728
  * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
35729
+ * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
35510
35730
  * `ROLE_CHANGE` - Role Change
35511
35731
  * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
35512
35732
  * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -35515,7 +35735,7 @@ components:
35515
35735
  * `USER_LICENSE_ASSIGNMENT` - User License Assignment
35516
35736
  * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
35517
35737
  oneOf:
35518
- - $ref: '#/components/schemas/Type768Enum'
35738
+ - $ref: '#/components/schemas/Type2a5Enum'
35519
35739
  - $ref: '#/components/schemas/NullEnum'
35520
35740
  name:
35521
35741
  type: string
@@ -35635,6 +35855,7 @@ components:
35635
35855
  * `PROGRAM_INVITATION` - Program Invitation
35636
35856
  * `COURSE_INVITATION` - Course Invitation
35637
35857
  * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
35858
+ * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
35638
35859
  * `ROLE_CHANGE` - Role Change
35639
35860
  * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
35640
35861
  * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -35643,7 +35864,7 @@ components:
35643
35864
  * `USER_LICENSE_ASSIGNMENT` - User License Assignment
35644
35865
  * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
35645
35866
  oneOf:
35646
- - $ref: '#/components/schemas/Type768Enum'
35867
+ - $ref: '#/components/schemas/Type2a5Enum'
35647
35868
  - $ref: '#/components/schemas/BlankEnum'
35648
35869
  - $ref: '#/components/schemas/NullEnum'
35649
35870
  name:
@@ -36755,6 +36976,7 @@ components:
36755
36976
  * `PROGRAM_INVITATION` - Program Invitation
36756
36977
  * `COURSE_INVITATION` - Course Invitation
36757
36978
  * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
36979
+ * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
36758
36980
  * `ROLE_CHANGE` - Role Change
36759
36981
  * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
36760
36982
  * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -36763,7 +36985,7 @@ components:
36763
36985
  * `USER_LICENSE_ASSIGNMENT` - User License Assignment
36764
36986
  * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
36765
36987
  oneOf:
36766
- - $ref: '#/components/schemas/Type768Enum'
36988
+ - $ref: '#/components/schemas/Type2a5Enum'
36767
36989
  - $ref: '#/components/schemas/NullEnum'
36768
36990
  name:
36769
36991
  type: string
@@ -36850,6 +37072,31 @@ components:
36850
37072
  properties:
36851
37073
  allow_notification:
36852
37074
  type: boolean
37075
+ PatchedPlatformPublicImageAsset:
37076
+ type: object
37077
+ properties:
37078
+ id:
37079
+ type: integer
37080
+ readOnly: true
37081
+ category:
37082
+ type: string
37083
+ description: Category of the asset
37084
+ maxLength: 200
37085
+ image:
37086
+ type: string
37087
+ format: uri
37088
+ writeOnly: true
37089
+ url:
37090
+ type: string
37091
+ readOnly: true
37092
+ created_on:
37093
+ type: string
37094
+ format: date-time
37095
+ readOnly: true
37096
+ last_updated:
37097
+ type: string
37098
+ format: date-time
37099
+ readOnly: true
36853
37100
  PatchedPlatformPublicMetadata:
36854
37101
  type: object
36855
37102
  properties:
@@ -38503,6 +38750,38 @@ components:
38503
38750
  - programs
38504
38751
  - resources
38505
38752
  - skills
38753
+ PlatformPublicImageAsset:
38754
+ type: object
38755
+ properties:
38756
+ id:
38757
+ type: integer
38758
+ readOnly: true
38759
+ category:
38760
+ type: string
38761
+ description: Category of the asset
38762
+ maxLength: 200
38763
+ image:
38764
+ type: string
38765
+ format: uri
38766
+ writeOnly: true
38767
+ url:
38768
+ type: string
38769
+ readOnly: true
38770
+ created_on:
38771
+ type: string
38772
+ format: date-time
38773
+ readOnly: true
38774
+ last_updated:
38775
+ type: string
38776
+ format: date-time
38777
+ readOnly: true
38778
+ required:
38779
+ - category
38780
+ - created_on
38781
+ - id
38782
+ - image
38783
+ - last_updated
38784
+ - url
38506
38785
  PlatformPublicMetadata:
38507
38786
  type: object
38508
38787
  properties:
@@ -42302,7 +42581,7 @@ components:
42302
42581
  - course_identifier
42303
42582
  - course_name
42304
42583
  - time_spent_seconds
42305
- Type768Enum:
42584
+ Type2a5Enum:
42306
42585
  enum:
42307
42586
  - DEFAULT_TEMPLATE
42308
42587
  - APP_REGISTRATION
@@ -42317,6 +42596,7 @@ components:
42317
42596
  - PROGRAM_INVITATION
42318
42597
  - COURSE_INVITATION
42319
42598
  - USER_NOTIF_LEARNER_PROGRESS
42599
+ - PROACTIVE_LEARNER_NOTIFICATION
42320
42600
  - ROLE_CHANGE
42321
42601
  - COURSE_LICENSE_ASSIGNMENT
42322
42602
  - COURSE_LICENSE_GROUP_ASSIGNMENT
@@ -42339,6 +42619,7 @@ components:
42339
42619
  * `PROGRAM_INVITATION` - Program Invitation
42340
42620
  * `COURSE_INVITATION` - Course Invitation
42341
42621
  * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
42622
+ * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
42342
42623
  * `ROLE_CHANGE` - Role Change
42343
42624
  * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
42344
42625
  * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: 'https://base.manager.iblai.app',
24
- VERSION: '4.73.0-core',
24
+ VERSION: '4.80.0-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
package/src/index.ts CHANGED
@@ -230,6 +230,7 @@ export type { PatchedMediaResource } from './models/PatchedMediaResource';
230
230
  export type { PatchedNotification } from './models/PatchedNotification';
231
231
  export type { PatchedNotificationTemplateDetail } from './models/PatchedNotificationTemplateDetail';
232
232
  export type { PatchedNotificationToggle } from './models/PatchedNotificationToggle';
233
+ export type { PatchedPlatformPublicImageAsset } from './models/PatchedPlatformPublicImageAsset';
233
234
  export type { PatchedPlatformPublicMetadata } from './models/PatchedPlatformPublicMetadata';
234
235
  export type { PatchedRbacGroup } from './models/PatchedRbacGroup';
235
236
  export type { PatchedRbacPolicy } from './models/PatchedRbacPolicy';
@@ -291,6 +292,7 @@ export { PlatformListStatusEnum } from './models/PlatformListStatusEnum';
291
292
  export type { PlatformMembershipConfig } from './models/PlatformMembershipConfig';
292
293
  export type { PlatformMembershipConfigPostRequest } from './models/PlatformMembershipConfigPostRequest';
293
294
  export type { PlatformMetrics } from './models/PlatformMetrics';
295
+ export type { PlatformPublicImageAsset } from './models/PlatformPublicImageAsset';
294
296
  export type { PlatformPublicMetadata } from './models/PlatformPublicMetadata';
295
297
  export type { PlatformSkillPointBulkRequest } from './models/PlatformSkillPointBulkRequest';
296
298
  export type { PlatformSkillPointBulkResponse } from './models/PlatformSkillPointBulkResponse';
@@ -425,7 +427,7 @@ export type { TokenProxyOutput } from './models/TokenProxyOutput';
425
427
  export type { TokenProxyOutputSerializerData } from './models/TokenProxyOutputSerializerData';
426
428
  export type { TokenProxyUser } from './models/TokenProxyUser';
427
429
  export type { TopContent } from './models/TopContent';
428
- export { Type768Enum } from './models/Type768Enum';
430
+ export { Type2a5Enum } from './models/Type2a5Enum';
429
431
  export type { UploadedImage } from './models/UploadedImage';
430
432
  export type { UserApp } from './models/UserApp';
431
433
  export type { UserDeleteAPIError } from './models/UserDeleteAPIError';
@@ -5,7 +5,7 @@
5
5
  import type { ConsumerChannel } from './ConsumerChannel';
6
6
  import type { NullEnum } from './NullEnum';
7
7
  import type { Spa } from './Spa';
8
- import type { Type768Enum } from './Type768Enum';
8
+ import type { Type2a5Enum } from './Type2a5Enum';
9
9
  /**
10
10
  * Serializer for detailed template view and editing
11
11
  */
@@ -30,6 +30,7 @@ export type NotificationTemplateDetail = {
30
30
  * * `PROGRAM_INVITATION` - Program Invitation
31
31
  * * `COURSE_INVITATION` - Course Invitation
32
32
  * * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
33
+ * * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
33
34
  * * `ROLE_CHANGE` - Role Change
34
35
  * * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
35
36
  * * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -38,7 +39,7 @@ export type NotificationTemplateDetail = {
38
39
  * * `USER_LICENSE_ASSIGNMENT` - User License Assignment
39
40
  * * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
40
41
  */
41
- readonly type: (Type768Enum | NullEnum) | null;
42
+ readonly type: (Type2a5Enum | NullEnum) | null;
42
43
  /**
43
44
  * A friendly name for the notification template.
44
45
  */
@@ -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 { Type768Enum } from './Type768Enum';
7
+ import type { Type2a5Enum } from './Type2a5Enum';
8
8
  /**
9
9
  * Serializer for listing notification templates with inheritance info
10
10
  */
@@ -29,6 +29,7 @@ export type NotificationTemplateList = {
29
29
  * * `PROGRAM_INVITATION` - Program Invitation
30
30
  * * `COURSE_INVITATION` - Course Invitation
31
31
  * * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
32
+ * * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
32
33
  * * `ROLE_CHANGE` - Role Change
33
34
  * * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
34
35
  * * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -37,7 +38,7 @@ export type NotificationTemplateList = {
37
38
  * * `USER_LICENSE_ASSIGNMENT` - User License Assignment
38
39
  * * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
39
40
  */
40
- type?: (Type768Enum | BlankEnum | NullEnum) | null;
41
+ type?: (Type2a5Enum | BlankEnum | NullEnum) | null;
41
42
  /**
42
43
  * A friendly name for the notification template.
43
44
  */
@@ -5,7 +5,7 @@
5
5
  import type { ConsumerChannel } from './ConsumerChannel';
6
6
  import type { NullEnum } from './NullEnum';
7
7
  import type { Spa } from './Spa';
8
- import type { Type768Enum } from './Type768Enum';
8
+ import type { Type2a5Enum } from './Type2a5Enum';
9
9
  /**
10
10
  * Serializer for detailed template view and editing
11
11
  */
@@ -30,6 +30,7 @@ export type PatchedNotificationTemplateDetail = {
30
30
  * * `PROGRAM_INVITATION` - Program Invitation
31
31
  * * `COURSE_INVITATION` - Course Invitation
32
32
  * * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
33
+ * * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
33
34
  * * `ROLE_CHANGE` - Role Change
34
35
  * * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
35
36
  * * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -38,7 +39,7 @@ export type PatchedNotificationTemplateDetail = {
38
39
  * * `USER_LICENSE_ASSIGNMENT` - User License Assignment
39
40
  * * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
40
41
  */
41
- readonly type?: (Type768Enum | NullEnum) | null;
42
+ readonly type?: (Type2a5Enum | NullEnum) | null;
42
43
  /**
43
44
  * A friendly name for the notification template.
44
45
  */
@@ -0,0 +1,16 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type PatchedPlatformPublicImageAsset = {
6
+ readonly id?: number;
7
+ /**
8
+ * Category of the asset
9
+ */
10
+ category?: string;
11
+ image?: string;
12
+ readonly url?: string;
13
+ readonly created_on?: string;
14
+ readonly last_updated?: 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
+ export type PlatformPublicImageAsset = {
6
+ readonly id: number;
7
+ /**
8
+ * Category of the asset
9
+ */
10
+ category: string;
11
+ image: string;
12
+ readonly url: string;
13
+ readonly created_on: string;
14
+ readonly last_updated: string;
15
+ };
16
+
@@ -16,6 +16,7 @@
16
16
  * * `PROGRAM_INVITATION` - Program Invitation
17
17
  * * `COURSE_INVITATION` - Course Invitation
18
18
  * * `USER_NOTIF_LEARNER_PROGRESS` - User Notif Learner Progress
19
+ * * `PROACTIVE_LEARNER_NOTIFICATION` - Proactive Learner Notification
19
20
  * * `ROLE_CHANGE` - Role Change
20
21
  * * `COURSE_LICENSE_ASSIGNMENT` - Course License Assignment
21
22
  * * `COURSE_LICENSE_GROUP_ASSIGNMENT` - Course License Group Assignment
@@ -24,7 +25,7 @@
24
25
  * * `USER_LICENSE_ASSIGNMENT` - User License Assignment
25
26
  * * `USER_LICENSE_GROUP_ASSIGNMENT` - User License Group Assignment
26
27
  */
27
- export enum Type768Enum {
28
+ export enum Type2a5Enum {
28
29
  DEFAULT_TEMPLATE = 'DEFAULT_TEMPLATE',
29
30
  APP_REGISTRATION = 'APP_REGISTRATION',
30
31
  USER_NOTIF_USER_REGISTRATION = 'USER_NOTIF_USER_REGISTRATION',
@@ -38,6 +39,7 @@ export enum Type768Enum {
38
39
  PROGRAM_INVITATION = 'PROGRAM_INVITATION',
39
40
  COURSE_INVITATION = 'COURSE_INVITATION',
40
41
  USER_NOTIF_LEARNER_PROGRESS = 'USER_NOTIF_LEARNER_PROGRESS',
42
+ PROACTIVE_LEARNER_NOTIFICATION = 'PROACTIVE_LEARNER_NOTIFICATION',
41
43
  ROLE_CHANGE = 'ROLE_CHANGE',
42
44
  COURSE_LICENSE_ASSIGNMENT = 'COURSE_LICENSE_ASSIGNMENT',
43
45
  COURSE_LICENSE_GROUP_ASSIGNMENT = 'COURSE_LICENSE_GROUP_ASSIGNMENT',