@iblai/iblai-api 4.63.4-ai → 4.64.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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.63.4-ai-plus',
113
+ VERSION: '4.64.0-ai-plus',
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.63.4-ai-plus',
111
+ VERSION: '4.64.0-ai-plus',
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.63.4-ai-plus',
117
+ VERSION: '4.64.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -49,6 +49,11 @@ export type MentorSettingsRequest = {
49
49
  enable_suggested_prompts?: boolean | null;
50
50
  enable_guided_prompts?: boolean | null;
51
51
  mcp_servers?: Array<number> | null;
52
+ embed_is_context_aware?: boolean;
53
+ embed_open_by_default?: boolean;
54
+ embed_show_attachment?: boolean;
55
+ embed_show_voice_call?: boolean;
56
+ embed_show_voice_record?: boolean;
52
57
  google_voice?: number;
53
58
  openai_voice?: number;
54
59
  guided_prompt_instructions?: string | null;
@@ -3,5 +3,6 @@ export type MessageViewRequest = {
3
3
  /**
4
4
  * List of tools slugs to use
5
5
  */
6
- tools?: Array<string>;
6
+ tools?: Array<string> | null;
7
+ enable_artifacts?: boolean;
7
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.63.4-ai",
3
+ "version": "4.64.0-ai",
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.63.4-ai-plus
4
+ version: 4.64.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -74862,6 +74862,16 @@ components:
74862
74862
  items:
74863
74863
  type: integer
74864
74864
  nullable: true
74865
+ embed_is_context_aware:
74866
+ type: boolean
74867
+ embed_open_by_default:
74868
+ type: boolean
74869
+ embed_show_attachment:
74870
+ type: boolean
74871
+ embed_show_voice_call:
74872
+ type: boolean
74873
+ embed_show_voice_record:
74874
+ type: boolean
74865
74875
  google_voice:
74866
74876
  type: integer
74867
74877
  openai_voice:
@@ -75021,8 +75031,11 @@ components:
75021
75031
  type: array
75022
75032
  items:
75023
75033
  type: string
75034
+ nullable: true
75024
75035
  default: []
75025
75036
  description: List of tools slugs to use
75037
+ enable_artifacts:
75038
+ type: boolean
75026
75039
  MessageViewUpdatResponse:
75027
75040
  type: object
75028
75041
  properties:
@@ -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.63.4-ai-plus',
24
+ VERSION: '4.64.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -53,6 +53,11 @@ export type MentorSettingsRequest = {
53
53
  enable_suggested_prompts?: boolean | null;
54
54
  enable_guided_prompts?: boolean | null;
55
55
  mcp_servers?: Array<number> | null;
56
+ embed_is_context_aware?: boolean;
57
+ embed_open_by_default?: boolean;
58
+ embed_show_attachment?: boolean;
59
+ embed_show_voice_call?: boolean;
60
+ embed_show_voice_record?: boolean;
56
61
  google_voice?: number;
57
62
  openai_voice?: number;
58
63
  guided_prompt_instructions?: string | null;
@@ -7,6 +7,7 @@ export type MessageViewRequest = {
7
7
  /**
8
8
  * List of tools slugs to use
9
9
  */
10
- tools?: Array<string>;
10
+ tools?: Array<string> | null;
11
+ enable_artifacts?: boolean;
11
12
  };
12
13