@iblai/iblai-api 4.149.2-ai → 4.149.3-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.
@@ -30,6 +30,7 @@ export type MentorSettings = {
30
30
  readonly enable_memory_component: boolean;
31
31
  custom_css?: string | null;
32
32
  custom_javascript?: string | null;
33
+ readonly enable_custom_javascript: boolean;
33
34
  readonly allow_anonymous: boolean;
34
35
  readonly mentor_description: string;
35
36
  readonly suggested_prompts: any;
@@ -28,6 +28,7 @@ export type MentorSettingsPublic = {
28
28
  readonly enable_memory_component: boolean;
29
29
  custom_css?: string | null;
30
30
  custom_javascript?: string | null;
31
+ readonly enable_custom_javascript: boolean;
31
32
  readonly allow_anonymous: boolean;
32
33
  readonly mentor_description: string;
33
34
  readonly suggested_prompts: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.149.2-ai",
3
+ "version": "4.149.3-ai",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
package/sdk_schema.yml CHANGED
@@ -80980,6 +80980,9 @@ components:
80980
80980
  custom_javascript:
80981
80981
  type: string
80982
80982
  nullable: true
80983
+ enable_custom_javascript:
80984
+ type: boolean
80985
+ readOnly: true
80983
80986
  allow_anonymous:
80984
80987
  type: boolean
80985
80988
  readOnly: true
@@ -81221,6 +81224,7 @@ components:
81221
81224
  - embed_show_attachment
81222
81225
  - embed_show_voice_call
81223
81226
  - embed_show_voice_record
81227
+ - enable_custom_javascript
81224
81228
  - enable_disclaimer
81225
81229
  - enable_email_chat
81226
81230
  - enable_guided_prompts
@@ -81350,6 +81354,9 @@ components:
81350
81354
  custom_javascript:
81351
81355
  type: string
81352
81356
  nullable: true
81357
+ enable_custom_javascript:
81358
+ type: boolean
81359
+ readOnly: true
81353
81360
  allow_anonymous:
81354
81361
  type: boolean
81355
81362
  readOnly: true
@@ -81519,6 +81526,7 @@ components:
81519
81526
  - embed_show_attachment
81520
81527
  - embed_show_voice_call
81521
81528
  - embed_show_voice_record
81529
+ - enable_custom_javascript
81522
81530
  - enable_disclaimer
81523
81531
  - enable_email_chat
81524
81532
  - enable_guided_prompts
@@ -34,6 +34,7 @@ export type MentorSettings = {
34
34
  readonly enable_memory_component: boolean;
35
35
  custom_css?: string | null;
36
36
  custom_javascript?: string | null;
37
+ readonly enable_custom_javascript: boolean;
37
38
  readonly allow_anonymous: boolean;
38
39
  readonly mentor_description: string;
39
40
  readonly suggested_prompts: any;
@@ -32,6 +32,7 @@ export type MentorSettingsPublic = {
32
32
  readonly enable_memory_component: boolean;
33
33
  custom_css?: string | null;
34
34
  custom_javascript?: string | null;
35
+ readonly enable_custom_javascript: boolean;
35
36
  readonly allow_anonymous: boolean;
36
37
  readonly mentor_description: string;
37
38
  readonly suggested_prompts: any;