@iblai/iblai-api 4.280.1-core → 4.281.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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.280.1-core',
113
+ VERSION: '4.281.0-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.280.1-core',
111
+ VERSION: '4.281.0-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.280.1-core',
117
+ VERSION: '4.281.0-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -146,6 +146,7 @@ export type { DetailedGradeView } from './models/DetailedGradeView';
146
146
  export type { DetailedGradeViewData } from './models/DetailedGradeViewData';
147
147
  export { DisabilityStatusEnum } from './models/DisabilityStatusEnum';
148
148
  export type { Education } from './models/Education';
149
+ export type { EdxJwtToken } from './models/EdxJwtToken';
149
150
  export type { EdxSignalReceiverRequest } from './models/EdxSignalReceiverRequest';
150
151
  export type { EngagementPerCourse } from './models/EngagementPerCourse';
151
152
  export type { EngagementPerCourseData } from './models/EngagementPerCourseData';
@@ -0,0 +1,13 @@
1
+ /**
2
+ * edX JWT minted server-to-server for the user (provisioning only).
3
+ */
4
+ export type EdxJwtToken = {
5
+ /**
6
+ * edX JWT
7
+ */
8
+ token: string;
9
+ /**
10
+ * Token expiration
11
+ */
12
+ expires?: string | null;
13
+ };
@@ -1,4 +1,5 @@
1
1
  import type { AuthToken } from './AuthToken';
2
+ import type { EdxJwtToken } from './EdxJwtToken';
2
3
  import type { ManagerAuthToken } from './ManagerAuthToken';
3
4
  import type { TokenProxyUser } from './TokenProxyUser';
4
5
  /**
@@ -17,4 +18,8 @@ export type TokenProxyOutputSerializerData = {
17
18
  * DM Token details
18
19
  */
19
20
  dm_token: ManagerAuthToken;
21
+ /**
22
+ * edX JWT details
23
+ */
24
+ edx_jwt_token?: EdxJwtToken;
20
25
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.280.1-core",
3
+ "version": "4.281.0-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.280.1-core
4
+ version: 4.281.0-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /access-check/{item_type}/{item_id}/:
@@ -47054,6 +47054,20 @@ components:
47054
47054
  - updated_at
47055
47055
  - user
47056
47056
  - user_info
47057
+ EdxJwtToken:
47058
+ type: object
47059
+ description: edX JWT minted server-to-server for the user (provisioning only).
47060
+ properties:
47061
+ token:
47062
+ type: string
47063
+ description: edX JWT
47064
+ expires:
47065
+ type: string
47066
+ format: date-time
47067
+ nullable: true
47068
+ description: Token expiration
47069
+ required:
47070
+ - token
47057
47071
  EdxSignalReceiverRequest:
47058
47072
  type: object
47059
47073
  properties:
@@ -58972,6 +58986,10 @@ components:
58972
58986
  allOf:
58973
58987
  - $ref: '#/components/schemas/ManagerAuthToken'
58974
58988
  description: DM Token details
58989
+ edx_jwt_token:
58990
+ allOf:
58991
+ - $ref: '#/components/schemas/EdxJwtToken'
58992
+ description: edX JWT details
58975
58993
  required:
58976
58994
  - axd_token
58977
58995
  - dm_token
@@ -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.280.1-core',
24
+ VERSION: '4.281.0-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
package/src/index.ts CHANGED
@@ -151,6 +151,7 @@ export type { DetailedGradeView } from './models/DetailedGradeView';
151
151
  export type { DetailedGradeViewData } from './models/DetailedGradeViewData';
152
152
  export { DisabilityStatusEnum } from './models/DisabilityStatusEnum';
153
153
  export type { Education } from './models/Education';
154
+ export type { EdxJwtToken } from './models/EdxJwtToken';
154
155
  export type { EdxSignalReceiverRequest } from './models/EdxSignalReceiverRequest';
155
156
  export type { EngagementPerCourse } from './models/EngagementPerCourse';
156
157
  export type { EngagementPerCourseData } from './models/EngagementPerCourseData';
@@ -0,0 +1,18 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ /**
6
+ * edX JWT minted server-to-server for the user (provisioning only).
7
+ */
8
+ export type EdxJwtToken = {
9
+ /**
10
+ * edX JWT
11
+ */
12
+ token: string;
13
+ /**
14
+ * Token expiration
15
+ */
16
+ expires?: string | null;
17
+ };
18
+
@@ -3,6 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { AuthToken } from './AuthToken';
6
+ import type { EdxJwtToken } from './EdxJwtToken';
6
7
  import type { ManagerAuthToken } from './ManagerAuthToken';
7
8
  import type { TokenProxyUser } from './TokenProxyUser';
8
9
  /**
@@ -21,5 +22,9 @@ export type TokenProxyOutputSerializerData = {
21
22
  * DM Token details
22
23
  */
23
24
  dm_token: ManagerAuthToken;
25
+ /**
26
+ * edX JWT details
27
+ */
28
+ edx_jwt_token?: EdxJwtToken;
24
29
  };
25
30