@iblai/iblai-api 4.280.1-ai → 4.281.0-ai

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-ai-plus',
113
+ VERSION: '4.281.0-ai-plus',
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-ai-plus',
111
+ VERSION: '4.281.0-ai-plus',
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-ai-plus',
117
+ VERSION: '4.281.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -265,6 +265,7 @@ export type { DocumentSearchResponse } from './models/DocumentSearchResponse';
265
265
  export type { DocumentSettingsResponse } from './models/DocumentSettingsResponse';
266
266
  export type { Education } from './models/Education';
267
267
  export type { EdxCourse } from './models/EdxCourse';
268
+ export type { EdxJwtToken } from './models/EdxJwtToken';
268
269
  export type { EdxSignalReceiverRequest } from './models/EdxSignalReceiverRequest';
269
270
  export type { ElevenlabsCustomVoice } from './models/ElevenlabsCustomVoice';
270
271
  export type { ElevenlabsCustomVoiceResponse } from './models/ElevenlabsCustomVoiceResponse';
@@ -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-ai",
3
+ "version": "4.281.0-ai",
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-ai-plus
4
+ version: 4.281.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /access-check/{item_type}/{item_id}/:
@@ -93856,6 +93856,20 @@ components:
93856
93856
  - run
93857
93857
  - updated_at
93858
93858
  - xblock_id
93859
+ EdxJwtToken:
93860
+ type: object
93861
+ description: edX JWT minted server-to-server for the user (provisioning only).
93862
+ properties:
93863
+ token:
93864
+ type: string
93865
+ description: edX JWT
93866
+ expires:
93867
+ type: string
93868
+ format: date-time
93869
+ nullable: true
93870
+ description: Token expiration
93871
+ required:
93872
+ - token
93859
93873
  EdxSignalReceiverRequest:
93860
93874
  type: object
93861
93875
  properties:
@@ -116216,6 +116230,10 @@ components:
116216
116230
  allOf:
116217
116231
  - $ref: '#/components/schemas/ManagerAuthToken'
116218
116232
  description: DM Token details
116233
+ edx_jwt_token:
116234
+ allOf:
116235
+ - $ref: '#/components/schemas/EdxJwtToken'
116236
+ description: edX JWT details
116219
116237
  required:
116220
116238
  - axd_token
116221
116239
  - 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-ai-plus',
24
+ VERSION: '4.281.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
package/src/index.ts CHANGED
@@ -270,6 +270,7 @@ export type { DocumentSearchResponse } from './models/DocumentSearchResponse';
270
270
  export type { DocumentSettingsResponse } from './models/DocumentSettingsResponse';
271
271
  export type { Education } from './models/Education';
272
272
  export type { EdxCourse } from './models/EdxCourse';
273
+ export type { EdxJwtToken } from './models/EdxJwtToken';
273
274
  export type { EdxSignalReceiverRequest } from './models/EdxSignalReceiverRequest';
274
275
  export type { ElevenlabsCustomVoice } from './models/ElevenlabsCustomVoice';
275
276
  export type { ElevenlabsCustomVoiceResponse } from './models/ElevenlabsCustomVoiceResponse';
@@ -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