@iblai/iblai-api 4.115.1-test-ai → 4.116.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/CallConfiguration.d.ts +4 -0
- package/dist/types/models/PatchedCallConfiguration.d.ts +4 -0
- package/package.json +1 -1
- package/sdk_schema.yml +9 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/CallConfiguration.ts +4 -0
- package/src/models/PatchedCallConfiguration.ts +4 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -26,5 +26,9 @@ export type CallConfiguration = {
|
|
|
26
26
|
* Whether to enable video for the call. (applicable only for realtime mode)
|
|
27
27
|
*/
|
|
28
28
|
enable_video?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* System prompt to use for screensharing guidance. Defaults to VIDEO_GUIDANCE_PROMPT from constants.
|
|
31
|
+
*/
|
|
32
|
+
screensharing_system_prompt?: string;
|
|
29
33
|
readonly platform_key: string;
|
|
30
34
|
};
|
|
@@ -26,5 +26,9 @@ export type PatchedCallConfiguration = {
|
|
|
26
26
|
* Whether to enable video for the call. (applicable only for realtime mode)
|
|
27
27
|
*/
|
|
28
28
|
enable_video?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* System prompt to use for screensharing guidance. Defaults to VIDEO_GUIDANCE_PROMPT from constants.
|
|
31
|
+
*/
|
|
32
|
+
screensharing_system_prompt?: string;
|
|
29
33
|
readonly platform_key?: string;
|
|
30
34
|
};
|
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.116.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -71046,6 +71046,10 @@ components:
|
|
|
71046
71046
|
type: boolean
|
|
71047
71047
|
description: Whether to enable video for the call. (applicable only for
|
|
71048
71048
|
realtime mode)
|
|
71049
|
+
screensharing_system_prompt:
|
|
71050
|
+
type: string
|
|
71051
|
+
description: System prompt to use for screensharing guidance. Defaults to
|
|
71052
|
+
VIDEO_GUIDANCE_PROMPT from constants.
|
|
71049
71053
|
platform_key:
|
|
71050
71054
|
type: string
|
|
71051
71055
|
readOnly: true
|
|
@@ -82010,6 +82014,10 @@ components:
|
|
|
82010
82014
|
type: boolean
|
|
82011
82015
|
description: Whether to enable video for the call. (applicable only for
|
|
82012
82016
|
realtime mode)
|
|
82017
|
+
screensharing_system_prompt:
|
|
82018
|
+
type: string
|
|
82019
|
+
description: System prompt to use for screensharing guidance. Defaults to
|
|
82020
|
+
VIDEO_GUIDANCE_PROMPT from constants.
|
|
82013
82021
|
platform_key:
|
|
82014
82022
|
type: string
|
|
82015
82023
|
readOnly: true
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -30,6 +30,10 @@ export type CallConfiguration = {
|
|
|
30
30
|
* Whether to enable video for the call. (applicable only for realtime mode)
|
|
31
31
|
*/
|
|
32
32
|
enable_video?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* System prompt to use for screensharing guidance. Defaults to VIDEO_GUIDANCE_PROMPT from constants.
|
|
35
|
+
*/
|
|
36
|
+
screensharing_system_prompt?: string;
|
|
33
37
|
readonly platform_key: string;
|
|
34
38
|
};
|
|
35
39
|
|
|
@@ -30,6 +30,10 @@ export type PatchedCallConfiguration = {
|
|
|
30
30
|
* Whether to enable video for the call. (applicable only for realtime mode)
|
|
31
31
|
*/
|
|
32
32
|
enable_video?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* System prompt to use for screensharing guidance. Defaults to VIDEO_GUIDANCE_PROMPT from constants.
|
|
35
|
+
*/
|
|
36
|
+
screensharing_system_prompt?: string;
|
|
33
37
|
readonly platform_key?: string;
|
|
34
38
|
};
|
|
35
39
|
|