@iblai/iblai-api 4.357.0-ai → 4.358.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/MentorSettings.d.ts +1 -0
- package/dist/types/models/PatchedMentorSettings.d.ts +1 -0
- package/package.json +1 -1
- package/sdk_schema.yml +8 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/MentorSettings.ts +1 -0
- package/src/models/PatchedMentorSettings.ts +1 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
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.358.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -113580,6 +113580,9 @@ components:
|
|
|
113580
113580
|
* `none` - None
|
|
113581
113581
|
* `registries` - Registries
|
|
113582
113582
|
* `public` - Public
|
|
113583
|
+
enable_computational_runtime:
|
|
113584
|
+
type: boolean
|
|
113585
|
+
readOnly: true
|
|
113583
113586
|
required:
|
|
113584
113587
|
- allow_anonymous
|
|
113585
113588
|
- call_configuration
|
|
@@ -113599,6 +113602,7 @@ components:
|
|
|
113599
113602
|
- embed_show_canvas
|
|
113600
113603
|
- embed_show_voice_call
|
|
113601
113604
|
- embed_show_voice_record
|
|
113605
|
+
- enable_computational_runtime
|
|
113602
113606
|
- enable_custom_javascript
|
|
113603
113607
|
- enable_disclaimer
|
|
113604
113608
|
- enable_email_chat
|
|
@@ -120701,6 +120705,9 @@ components:
|
|
|
120701
120705
|
* `none` - None
|
|
120702
120706
|
* `registries` - Registries
|
|
120703
120707
|
* `public` - Public
|
|
120708
|
+
enable_computational_runtime:
|
|
120709
|
+
type: boolean
|
|
120710
|
+
readOnly: true
|
|
120704
120711
|
PatchedMentorSkillAssignment:
|
|
120705
120712
|
type: object
|
|
120706
120713
|
properties:
|
package/src/core/OpenAPI.ts
CHANGED