@iblai/iblai-api 4.94.0-test-ai → 4.94.0-test2-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.
@@ -7,4 +7,5 @@ export type RecentlyAccessedMentor = {
7
7
  readonly recently_accessed_at: string | null;
8
8
  readonly platform_key: string | null;
9
9
  readonly last_accessed_by: string | null;
10
+ readonly created_by: string | null;
10
11
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.94.0-test-ai",
3
+ "version": "4.94.0-test2-ai",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
package/sdk_schema.yml CHANGED
@@ -87102,7 +87102,12 @@ components:
87102
87102
  type: string
87103
87103
  nullable: true
87104
87104
  readOnly: true
87105
+ created_by:
87106
+ type: string
87107
+ nullable: true
87108
+ readOnly: true
87105
87109
  required:
87110
+ - created_by
87106
87111
  - description
87107
87112
  - id
87108
87113
  - last_accessed_by
@@ -11,5 +11,6 @@ export type RecentlyAccessedMentor = {
11
11
  readonly recently_accessed_at: string | null;
12
12
  readonly platform_key: string | null;
13
13
  readonly last_accessed_by: string | null;
14
+ readonly created_by: string | null;
14
15
  };
15
16