@iblai/iblai-api 4.172.3-core → 4.172.4-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.172.3-core',
113
+ VERSION: '4.172.4-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.172.3-core',
111
+ VERSION: '4.172.4-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.172.3-core',
117
+ VERSION: '4.172.4-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.172.3-core",
3
+ "version": "4.172.4-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.172.3-core
4
+ version: 4.172.4-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /account/:
@@ -37783,6 +37783,19 @@ components:
37783
37783
  type: integer
37784
37784
  writeOnly: true
37785
37785
  description: List of user IDs to grant access to this mentor
37786
+ usernames_to_add:
37787
+ type: array
37788
+ items:
37789
+ type: string
37790
+ writeOnly: true
37791
+ description: List of usernames to grant access to this mentor
37792
+ emails_to_add:
37793
+ type: array
37794
+ items:
37795
+ type: string
37796
+ format: email
37797
+ writeOnly: true
37798
+ description: List of user emails to grant access to this mentor
37786
37799
  users_to_remove:
37787
37800
  type: array
37788
37801
  items:
@@ -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.172.3-core',
24
+ VERSION: '4.172.4-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -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
  */