@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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/models/EdxJwtToken.d.ts +13 -0
- package/dist/types/models/TokenProxyOutputSerializerData.d.ts +5 -0
- package/package.json +1 -1
- package/sdk_schema.yml +19 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/index.ts +1 -0
- package/src/models/EdxJwtToken.ts +18 -0
- package/src/models/TokenProxyOutputSerializerData.ts +5 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -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
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.
|
|
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
|
package/src/core/OpenAPI.ts
CHANGED
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
|
|