@iblai/iblai-api 4.96.3-ai → 4.97.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.96.3-ai-plus',
113
+ VERSION: '4.97.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.96.3-ai-plus',
111
+ VERSION: '4.97.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.96.3-ai-plus',
117
+ VERSION: '4.97.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -30,5 +30,13 @@ export type Conversations = {
30
30
  * True if the session has both user and AI messages
31
31
  */
32
32
  is_conversation?: boolean;
33
+ /**
34
+ * Count of human messages in this session
35
+ */
36
+ message_count_human?: number;
37
+ /**
38
+ * Count of AI messages in this session
39
+ */
40
+ message_count_ai?: number;
33
41
  tools?: Array<number>;
34
42
  };
@@ -30,5 +30,13 @@ export type PatchedConversations = {
30
30
  * True if the session has both user and AI messages
31
31
  */
32
32
  is_conversation?: boolean;
33
+ /**
34
+ * Count of human messages in this session
35
+ */
36
+ message_count_human?: number;
37
+ /**
38
+ * Count of AI messages in this session
39
+ */
40
+ message_count_ai?: number;
33
41
  tools?: Array<number>;
34
42
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.96.3-ai",
3
+ "version": "4.97.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.96.3-ai-plus
4
+ version: 4.97.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -71553,6 +71553,12 @@ components:
71553
71553
  is_conversation:
71554
71554
  type: boolean
71555
71555
  description: True if the session has both user and AI messages
71556
+ message_count_human:
71557
+ type: integer
71558
+ description: Count of human messages in this session
71559
+ message_count_ai:
71560
+ type: integer
71561
+ description: Count of AI messages in this session
71556
71562
  tools:
71557
71563
  type: array
71558
71564
  items:
@@ -81180,6 +81186,12 @@ components:
81180
81186
  is_conversation:
81181
81187
  type: boolean
81182
81188
  description: True if the session has both user and AI messages
81189
+ message_count_human:
81190
+ type: integer
81191
+ description: Count of human messages in this session
81192
+ message_count_ai:
81193
+ type: integer
81194
+ description: Count of AI messages in this session
81183
81195
  tools:
81184
81196
  type: array
81185
81197
  items:
@@ -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.96.3-ai-plus',
24
+ VERSION: '4.97.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -34,6 +34,14 @@ export type Conversations = {
34
34
  * True if the session has both user and AI messages
35
35
  */
36
36
  is_conversation?: boolean;
37
+ /**
38
+ * Count of human messages in this session
39
+ */
40
+ message_count_human?: number;
41
+ /**
42
+ * Count of AI messages in this session
43
+ */
44
+ message_count_ai?: number;
37
45
  tools?: Array<number>;
38
46
  };
39
47
 
@@ -34,6 +34,14 @@ export type PatchedConversations = {
34
34
  * True if the session has both user and AI messages
35
35
  */
36
36
  is_conversation?: boolean;
37
+ /**
38
+ * Count of human messages in this session
39
+ */
40
+ message_count_human?: number;
41
+ /**
42
+ * Count of AI messages in this session
43
+ */
44
+ message_count_ai?: number;
37
45
  tools?: Array<number>;
38
46
  };
39
47