@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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/MentorSettingsRequest.d.ts +5 -0
- package/dist/types/models/MessageViewRequest.d.ts +2 -1
- package/package.json +1 -1
- package/sdk_schema.yml +14 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/MentorSettingsRequest.ts +5 -0
- package/src/models/MessageViewRequest.ts +2 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -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;
|
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.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:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -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;
|