@iblai/iblai-api 4.172.3-ai → 4.172.4-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/models/MentorPolicy.d.ts +8 -0
- package/package.json +1 -1
- package/sdk_schema.yml +14 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/MentorPolicy.ts +8 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -40,6 +40,14 @@ export type MentorPolicy = {
|
|
|
40
40
|
* List of user IDs to grant access to this mentor
|
|
41
41
|
*/
|
|
42
42
|
users_to_add?: Array<number>;
|
|
43
|
+
/**
|
|
44
|
+
* List of usernames to grant access to this mentor
|
|
45
|
+
*/
|
|
46
|
+
usernames_to_add?: Array<string>;
|
|
47
|
+
/**
|
|
48
|
+
* List of user emails to grant access to this mentor
|
|
49
|
+
*/
|
|
50
|
+
emails_to_add?: Array<string>;
|
|
43
51
|
/**
|
|
44
52
|
* List of user IDs to revoke access from this mentor
|
|
45
53
|
*/
|
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.172.
|
|
4
|
+
version: 4.172.4-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/account/:
|
|
@@ -82015,6 +82015,19 @@ components:
|
|
|
82015
82015
|
type: integer
|
|
82016
82016
|
writeOnly: true
|
|
82017
82017
|
description: List of user IDs to grant access to this mentor
|
|
82018
|
+
usernames_to_add:
|
|
82019
|
+
type: array
|
|
82020
|
+
items:
|
|
82021
|
+
type: string
|
|
82022
|
+
writeOnly: true
|
|
82023
|
+
description: List of usernames to grant access to this mentor
|
|
82024
|
+
emails_to_add:
|
|
82025
|
+
type: array
|
|
82026
|
+
items:
|
|
82027
|
+
type: string
|
|
82028
|
+
format: email
|
|
82029
|
+
writeOnly: true
|
|
82030
|
+
description: List of user emails to grant access to this mentor
|
|
82018
82031
|
users_to_remove:
|
|
82019
82032
|
type: array
|
|
82020
82033
|
items:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -44,6 +44,14 @@ export type MentorPolicy = {
|
|
|
44
44
|
* List of user IDs to grant access to this mentor
|
|
45
45
|
*/
|
|
46
46
|
users_to_add?: Array<number>;
|
|
47
|
+
/**
|
|
48
|
+
* List of usernames to grant access to this mentor
|
|
49
|
+
*/
|
|
50
|
+
usernames_to_add?: Array<string>;
|
|
51
|
+
/**
|
|
52
|
+
* List of user emails to grant access to this mentor
|
|
53
|
+
*/
|
|
54
|
+
emails_to_add?: Array<string>;
|
|
47
55
|
/**
|
|
48
56
|
* List of user IDs to revoke access from this mentor
|
|
49
57
|
*/
|