@iblai/iblai-api 4.376.0-ai → 4.377.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.376.0-ai-plus',
113
+ VERSION: '4.377.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.376.0-ai-plus',
111
+ VERSION: '4.377.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.376.0-ai-plus',
117
+ VERSION: '4.377.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -19,4 +19,7 @@ export type ConversationListItem = {
19
19
  mentor_unique_id: string | null;
20
20
  model: string | null;
21
21
  readonly cost: string;
22
+ readonly documents_count: string;
23
+ readonly tool_calls_count: string;
24
+ readonly used_documents: string;
22
25
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.376.0-ai",
3
+ "version": "4.377.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.376.0-ai-plus
4
+ version: 4.377.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -103015,11 +103015,21 @@ components:
103015
103015
  cost:
103016
103016
  type: string
103017
103017
  readOnly: true
103018
+ documents_count:
103019
+ type: string
103020
+ readOnly: true
103021
+ tool_calls_count:
103022
+ type: string
103023
+ readOnly: true
103024
+ used_documents:
103025
+ type: string
103026
+ readOnly: true
103018
103027
  required:
103019
103028
  - assistant_responses
103020
103029
  - average_sentiment
103021
103030
  - cost
103022
103031
  - created_at
103032
+ - documents_count
103023
103033
  - email
103024
103034
  - first_user_message
103025
103035
  - mentor
@@ -103032,7 +103042,9 @@ components:
103032
103042
  - platform_name
103033
103043
  - sentiment
103034
103044
  - session
103045
+ - tool_calls_count
103035
103046
  - topics
103047
+ - used_documents
103036
103048
  - user
103037
103049
  - user_queries
103038
103050
  - username
@@ -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.376.0-ai-plus',
24
+ VERSION: '4.377.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -23,5 +23,8 @@ export type ConversationListItem = {
23
23
  mentor_unique_id: string | null;
24
24
  model: string | null;
25
25
  readonly cost: string;
26
+ readonly documents_count: string;
27
+ readonly tool_calls_count: string;
28
+ readonly used_documents: string;
26
29
  };
27
30