@iblai/iblai-api 4.219.0-ai → 4.221.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.219.0-ai-plus',
113
+ VERSION: '4.221.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.219.0-ai-plus',
111
+ VERSION: '4.221.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.219.0-ai-plus',
117
+ VERSION: '4.221.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -85,6 +85,7 @@ export type MentorSettings = {
85
85
  readonly platform_key: string;
86
86
  readonly llm_config: any;
87
87
  readonly llm_provider: string;
88
+ readonly enable_voice_call: boolean;
88
89
  readonly system_prompt: string;
89
90
  readonly llm_temperature: number;
90
91
  readonly safety_system_prompt: string;
@@ -83,4 +83,5 @@ export type MentorSettingsPublic = {
83
83
  readonly platform_key: string;
84
84
  readonly llm_config: any;
85
85
  readonly llm_provider: string;
86
+ readonly enable_voice_call: boolean;
86
87
  };
@@ -85,6 +85,7 @@ export type PatchedMentorSettings = {
85
85
  readonly platform_key?: string;
86
86
  readonly llm_config?: any;
87
87
  readonly llm_provider?: string;
88
+ readonly enable_voice_call?: boolean;
88
89
  readonly system_prompt?: string;
89
90
  readonly llm_temperature?: number;
90
91
  readonly safety_system_prompt?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.219.0-ai",
3
+ "version": "4.221.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.219.0-ai-plus
4
+ version: 4.221.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /access-check/{item_type}/{item_id}/:
@@ -87900,6 +87900,9 @@ components:
87900
87900
  llm_provider:
87901
87901
  type: string
87902
87902
  readOnly: true
87903
+ enable_voice_call:
87904
+ type: boolean
87905
+ readOnly: true
87903
87906
  system_prompt:
87904
87907
  type: string
87905
87908
  readOnly: true
@@ -88017,6 +88020,7 @@ components:
88017
88020
  - enable_spaced_repetition
88018
88021
  - enable_suggested_prompts
88019
88022
  - enable_total_grounding
88023
+ - enable_voice_call
88020
88024
  - forkable
88021
88025
  - forkable_with_training_data
88022
88026
  - google_voice
@@ -88307,6 +88311,9 @@ components:
88307
88311
  llm_provider:
88308
88312
  type: string
88309
88313
  readOnly: true
88314
+ enable_voice_call:
88315
+ type: boolean
88316
+ readOnly: true
88310
88317
  required:
88311
88318
  - allow_anonymous
88312
88319
  - can_use_tools
@@ -88335,6 +88342,7 @@ components:
88335
88342
  - enable_safety_system
88336
88343
  - enable_socratic_mode
88337
88344
  - enable_spaced_repetition
88345
+ - enable_voice_call
88338
88346
  - forkable
88339
88347
  - forkable_with_training_data
88340
88348
  - greeting_method
@@ -93361,6 +93369,9 @@ components:
93361
93369
  llm_provider:
93362
93370
  type: string
93363
93371
  readOnly: true
93372
+ enable_voice_call:
93373
+ type: boolean
93374
+ readOnly: true
93364
93375
  system_prompt:
93365
93376
  type: string
93366
93377
  readOnly: true
@@ -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.219.0-ai-plus',
24
+ VERSION: '4.221.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -89,6 +89,7 @@ export type MentorSettings = {
89
89
  readonly platform_key: string;
90
90
  readonly llm_config: any;
91
91
  readonly llm_provider: string;
92
+ readonly enable_voice_call: boolean;
92
93
  readonly system_prompt: string;
93
94
  readonly llm_temperature: number;
94
95
  readonly safety_system_prompt: string;
@@ -87,5 +87,6 @@ export type MentorSettingsPublic = {
87
87
  readonly platform_key: string;
88
88
  readonly llm_config: any;
89
89
  readonly llm_provider: string;
90
+ readonly enable_voice_call: boolean;
90
91
  };
91
92
 
@@ -89,6 +89,7 @@ export type PatchedMentorSettings = {
89
89
  readonly platform_key?: string;
90
90
  readonly llm_config?: any;
91
91
  readonly llm_provider?: string;
92
+ readonly enable_voice_call?: boolean;
92
93
  readonly system_prompt?: string;
93
94
  readonly llm_temperature?: number;
94
95
  readonly safety_system_prompt?: string;