@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 +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
|
@@ -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';
|
|
@@ -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-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
|
package/src/core/OpenAPI.ts
CHANGED
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
|
|