@iblai/iblai-api 4.90.3-ai → 4.90.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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.90.3-ai-plus',
113
+ VERSION: '4.90.4-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.90.3-ai-plus',
111
+ VERSION: '4.90.4-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.90.3-ai-plus',
117
+ VERSION: '4.90.4-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -57,6 +57,18 @@ export type Mentor = {
57
57
  */
58
58
  disclaimer?: string;
59
59
  enable_disclaimer?: boolean;
60
+ /**
61
+ * Show attachments on mentor.
62
+ */
63
+ show_attachment?: boolean;
64
+ /**
65
+ * Show voice call button on mentor.
66
+ */
67
+ show_voice_call?: boolean;
68
+ /**
69
+ * Show voice recording button on mentor.
70
+ */
71
+ show_voice_record?: boolean;
60
72
  /**
61
73
  * Allow embedded mentor to read content on the embedded web page.
62
74
  */
@@ -47,6 +47,18 @@ export type MentorCreate = {
47
47
  */
48
48
  disclaimer?: string;
49
49
  enable_disclaimer?: boolean;
50
+ /**
51
+ * Show attachments on mentor.
52
+ */
53
+ show_attachment?: boolean;
54
+ /**
55
+ * Show voice call button on mentor.
56
+ */
57
+ show_voice_call?: boolean;
58
+ /**
59
+ * Show voice recording button on mentor.
60
+ */
61
+ show_voice_record?: boolean;
50
62
  /**
51
63
  * Allow embedded mentor to read content on the embedded web page.
52
64
  */
@@ -35,6 +35,9 @@ export type MentorFromTemplateWithSettingRequest = {
35
35
  proactive_prompt?: string;
36
36
  disclaimer?: string;
37
37
  enable_disclaimer?: boolean;
38
+ show_attachment?: boolean;
39
+ show_voice_call?: boolean;
40
+ show_voice_record?: boolean;
38
41
  embed_is_context_aware?: boolean;
39
42
  embed_open_by_default?: boolean;
40
43
  embed_show_attachment?: boolean;
@@ -40,6 +40,9 @@ export type MentorSettings = {
40
40
  readonly proactive_prompt: string;
41
41
  readonly disclaimer: string;
42
42
  readonly enable_disclaimer: boolean;
43
+ readonly show_attachment: boolean;
44
+ readonly show_voice_call: boolean;
45
+ readonly show_voice_record: boolean;
43
46
  readonly embed_is_context_aware: boolean;
44
47
  readonly embed_open_by_default: boolean;
45
48
  readonly embed_show_attachment: boolean;
@@ -38,6 +38,9 @@ export type MentorSettingsPublic = {
38
38
  readonly proactive_prompt: string;
39
39
  readonly disclaimer: string;
40
40
  readonly enable_disclaimer: boolean;
41
+ readonly show_attachment: boolean;
42
+ readonly show_voice_call: boolean;
43
+ readonly show_voice_record: boolean;
41
44
  readonly embed_is_context_aware: boolean;
42
45
  readonly embed_open_by_default: boolean;
43
46
  readonly embed_show_attachment: boolean;
@@ -49,6 +49,9 @@ 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
+ show_attachment?: boolean;
53
+ show_voice_call?: boolean;
54
+ show_voice_record?: boolean;
52
55
  embed_is_context_aware?: boolean;
53
56
  embed_open_by_default?: boolean;
54
57
  embed_show_attachment?: boolean;
@@ -47,6 +47,18 @@ export type PatchedMentorCreate = {
47
47
  */
48
48
  disclaimer?: string;
49
49
  enable_disclaimer?: boolean;
50
+ /**
51
+ * Show attachments on mentor.
52
+ */
53
+ show_attachment?: boolean;
54
+ /**
55
+ * Show voice call button on mentor.
56
+ */
57
+ show_voice_call?: boolean;
58
+ /**
59
+ * Show voice recording button on mentor.
60
+ */
61
+ show_voice_record?: boolean;
50
62
  /**
51
63
  * Allow embedded mentor to read content on the embedded web page.
52
64
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.90.3-ai",
3
+ "version": "4.90.4-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.90.3-ai-plus
4
+ version: 4.90.4-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -75612,6 +75612,15 @@ components:
75612
75612
  description: Disclaimer to be shown to the user when the mentor is used.
75613
75613
  enable_disclaimer:
75614
75614
  type: boolean
75615
+ show_attachment:
75616
+ type: boolean
75617
+ description: Show attachments on mentor.
75618
+ show_voice_call:
75619
+ type: boolean
75620
+ description: Show voice call button on mentor.
75621
+ show_voice_record:
75622
+ type: boolean
75623
+ description: Show voice recording button on mentor.
75615
75624
  embed_is_context_aware:
75616
75625
  type: boolean
75617
75626
  description: Allow embedded mentor to read content on the embedded web page.
@@ -75927,6 +75936,15 @@ components:
75927
75936
  description: Disclaimer to be shown to the user when the mentor is used.
75928
75937
  enable_disclaimer:
75929
75938
  type: boolean
75939
+ show_attachment:
75940
+ type: boolean
75941
+ description: Show attachments on mentor.
75942
+ show_voice_call:
75943
+ type: boolean
75944
+ description: Show voice call button on mentor.
75945
+ show_voice_record:
75946
+ type: boolean
75947
+ description: Show voice recording button on mentor.
75930
75948
  embed_is_context_aware:
75931
75949
  type: boolean
75932
75950
  description: Allow embedded mentor to read content on the embedded web page.
@@ -76324,6 +76342,12 @@ components:
76324
76342
  type: string
76325
76343
  enable_disclaimer:
76326
76344
  type: boolean
76345
+ show_attachment:
76346
+ type: boolean
76347
+ show_voice_call:
76348
+ type: boolean
76349
+ show_voice_record:
76350
+ type: boolean
76327
76351
  embed_is_context_aware:
76328
76352
  type: boolean
76329
76353
  embed_open_by_default:
@@ -76685,6 +76709,15 @@ components:
76685
76709
  enable_disclaimer:
76686
76710
  type: boolean
76687
76711
  readOnly: true
76712
+ show_attachment:
76713
+ type: boolean
76714
+ readOnly: true
76715
+ show_voice_call:
76716
+ type: boolean
76717
+ readOnly: true
76718
+ show_voice_record:
76719
+ type: boolean
76720
+ readOnly: true
76688
76721
  embed_is_context_aware:
76689
76722
  type: boolean
76690
76723
  readOnly: true
@@ -76911,6 +76944,9 @@ components:
76911
76944
  - safety_response
76912
76945
  - safety_system_prompt
76913
76946
  - seo_tags
76947
+ - show_attachment
76948
+ - show_voice_call
76949
+ - show_voice_record
76914
76950
  - subjects
76915
76951
  - suggested_prompts
76916
76952
  - system_prompt
@@ -77012,6 +77048,15 @@ components:
77012
77048
  enable_disclaimer:
77013
77049
  type: boolean
77014
77050
  readOnly: true
77051
+ show_attachment:
77052
+ type: boolean
77053
+ readOnly: true
77054
+ show_voice_call:
77055
+ type: boolean
77056
+ readOnly: true
77057
+ show_voice_record:
77058
+ type: boolean
77059
+ readOnly: true
77015
77060
  embed_is_context_aware:
77016
77061
  type: boolean
77017
77062
  readOnly: true
@@ -77155,6 +77200,9 @@ components:
77155
77200
  - proactive_prompt
77156
77201
  - proactive_response
77157
77202
  - recently_accessed_at
77203
+ - show_attachment
77204
+ - show_voice_call
77205
+ - show_voice_record
77158
77206
  - subjects
77159
77207
  - suggested_prompts
77160
77208
  - types
@@ -77272,6 +77320,12 @@ components:
77272
77320
  items:
77273
77321
  type: integer
77274
77322
  nullable: true
77323
+ show_attachment:
77324
+ type: boolean
77325
+ show_voice_call:
77326
+ type: boolean
77327
+ show_voice_record:
77328
+ type: boolean
77275
77329
  embed_is_context_aware:
77276
77330
  type: boolean
77277
77331
  embed_open_by_default:
@@ -80723,6 +80777,15 @@ components:
80723
80777
  description: Disclaimer to be shown to the user when the mentor is used.
80724
80778
  enable_disclaimer:
80725
80779
  type: boolean
80780
+ show_attachment:
80781
+ type: boolean
80782
+ description: Show attachments on mentor.
80783
+ show_voice_call:
80784
+ type: boolean
80785
+ description: Show voice call button on mentor.
80786
+ show_voice_record:
80787
+ type: boolean
80788
+ description: Show voice recording button on mentor.
80726
80789
  embed_is_context_aware:
80727
80790
  type: boolean
80728
80791
  description: Allow embedded mentor to read content on the embedded web page.
@@ -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.90.3-ai-plus',
24
+ VERSION: '4.90.4-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -61,6 +61,18 @@ export type Mentor = {
61
61
  */
62
62
  disclaimer?: string;
63
63
  enable_disclaimer?: boolean;
64
+ /**
65
+ * Show attachments on mentor.
66
+ */
67
+ show_attachment?: boolean;
68
+ /**
69
+ * Show voice call button on mentor.
70
+ */
71
+ show_voice_call?: boolean;
72
+ /**
73
+ * Show voice recording button on mentor.
74
+ */
75
+ show_voice_record?: boolean;
64
76
  /**
65
77
  * Allow embedded mentor to read content on the embedded web page.
66
78
  */
@@ -51,6 +51,18 @@ export type MentorCreate = {
51
51
  */
52
52
  disclaimer?: string;
53
53
  enable_disclaimer?: boolean;
54
+ /**
55
+ * Show attachments on mentor.
56
+ */
57
+ show_attachment?: boolean;
58
+ /**
59
+ * Show voice call button on mentor.
60
+ */
61
+ show_voice_call?: boolean;
62
+ /**
63
+ * Show voice recording button on mentor.
64
+ */
65
+ show_voice_record?: boolean;
54
66
  /**
55
67
  * Allow embedded mentor to read content on the embedded web page.
56
68
  */
@@ -39,6 +39,9 @@ export type MentorFromTemplateWithSettingRequest = {
39
39
  proactive_prompt?: string;
40
40
  disclaimer?: string;
41
41
  enable_disclaimer?: boolean;
42
+ show_attachment?: boolean;
43
+ show_voice_call?: boolean;
44
+ show_voice_record?: boolean;
42
45
  embed_is_context_aware?: boolean;
43
46
  embed_open_by_default?: boolean;
44
47
  embed_show_attachment?: boolean;
@@ -44,6 +44,9 @@ export type MentorSettings = {
44
44
  readonly proactive_prompt: string;
45
45
  readonly disclaimer: string;
46
46
  readonly enable_disclaimer: boolean;
47
+ readonly show_attachment: boolean;
48
+ readonly show_voice_call: boolean;
49
+ readonly show_voice_record: boolean;
47
50
  readonly embed_is_context_aware: boolean;
48
51
  readonly embed_open_by_default: boolean;
49
52
  readonly embed_show_attachment: boolean;
@@ -42,6 +42,9 @@ export type MentorSettingsPublic = {
42
42
  readonly proactive_prompt: string;
43
43
  readonly disclaimer: string;
44
44
  readonly enable_disclaimer: boolean;
45
+ readonly show_attachment: boolean;
46
+ readonly show_voice_call: boolean;
47
+ readonly show_voice_record: boolean;
45
48
  readonly embed_is_context_aware: boolean;
46
49
  readonly embed_open_by_default: boolean;
47
50
  readonly embed_show_attachment: boolean;
@@ -53,6 +53,9 @@ 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
+ show_attachment?: boolean;
57
+ show_voice_call?: boolean;
58
+ show_voice_record?: boolean;
56
59
  embed_is_context_aware?: boolean;
57
60
  embed_open_by_default?: boolean;
58
61
  embed_show_attachment?: boolean;
@@ -51,6 +51,18 @@ export type PatchedMentorCreate = {
51
51
  */
52
52
  disclaimer?: string;
53
53
  enable_disclaimer?: boolean;
54
+ /**
55
+ * Show attachments on mentor.
56
+ */
57
+ show_attachment?: boolean;
58
+ /**
59
+ * Show voice call button on mentor.
60
+ */
61
+ show_voice_call?: boolean;
62
+ /**
63
+ * Show voice recording button on mentor.
64
+ */
65
+ show_voice_record?: boolean;
54
66
  /**
55
67
  * Allow embedded mentor to read content on the embedded web page.
56
68
  */