@iblai/iblai-api 4.118.4-core → 4.118.5-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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.118.4-core',
113
+ VERSION: '4.118.5-core',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
package/dist/index.esm.js CHANGED
@@ -108,7 +108,7 @@ class CancelablePromise {
108
108
 
109
109
  const OpenAPI = {
110
110
  BASE: 'https://base.manager.iblai.app',
111
- VERSION: '4.118.4-core',
111
+ VERSION: '4.118.5-core',
112
112
  WITH_CREDENTIALS: false,
113
113
  CREDENTIALS: 'include',
114
114
  TOKEN: undefined,
package/dist/index.umd.js CHANGED
@@ -114,7 +114,7 @@
114
114
 
115
115
  const OpenAPI = {
116
116
  BASE: 'https://base.manager.iblai.app',
117
- VERSION: '4.118.4-core',
117
+ VERSION: '4.118.5-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -31,4 +31,8 @@ export type ProgramEnrollmentPlus = {
31
31
  */
32
32
  active?: boolean;
33
33
  metadata?: any;
34
+ /**
35
+ * Return program's public metadata
36
+ */
37
+ readonly program_metadata: Record<string, any> | null;
34
38
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.118.4-core",
3
+ "version": "4.118.5-core",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
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.118.4-core
4
+ version: 4.118.5-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/analytics/content/:
@@ -41211,8 +41211,15 @@ components:
41211
41211
  description: Whether the enrollment is active
41212
41212
  metadata:
41213
41213
  nullable: true
41214
+ program_metadata:
41215
+ type: object
41216
+ additionalProperties: {}
41217
+ nullable: true
41218
+ description: Return program's public metadata
41219
+ readOnly: true
41214
41220
  required:
41215
41221
  - ended
41222
+ - program_metadata
41216
41223
  ProgramEnrollmentSearchResponse:
41217
41224
  type: object
41218
41225
  description: Response serializer for ProgramEnrollmentSearchView GET endpoint.
@@ -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.118.4-core',
24
+ VERSION: '4.118.5-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -35,5 +35,9 @@ export type ProgramEnrollmentPlus = {
35
35
  */
36
36
  active?: boolean;
37
37
  metadata?: any;
38
+ /**
39
+ * Return program's public metadata
40
+ */
41
+ readonly program_metadata: Record<string, any> | null;
38
42
  };
39
43