@iblai/iblai-api 4.8.1-ai → 4.9.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: 'monorepo-4.8.1-ai-plus',
113
+ VERSION: '4.9.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: 'monorepo-4.8.1-ai-plus',
111
+ VERSION: '4.9.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: 'monorepo-4.8.1-ai-plus',
117
+ VERSION: '4.9.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -25,4 +25,5 @@ export type RetrieverDocumentEmbedding = {
25
25
  */
26
26
  crawler_match_patterns?: any;
27
27
  crawler_pattern_type?: (CrawlerPatternTypeEnum | BlankEnum);
28
+ readonly last_trained_at: string | null;
28
29
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.8.1-ai",
3
+ "version": "4.9.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: monorepo-4.8.1-ai-plus
4
+ version: 4.9.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -11100,6 +11100,7 @@ paths:
11100
11100
  platform_key: main
11101
11101
  access: public
11102
11102
  is_trained: true
11103
+ last_trained_at: '2025-07-24T17:32:13.031Z'
11103
11104
  summary: Document Embedding Detail Response
11104
11105
  description: ''
11105
11106
  '404':
@@ -72330,8 +72331,14 @@ components:
72330
72331
  oneOf:
72331
72332
  - $ref: '#/components/schemas/CrawlerPatternTypeEnum'
72332
72333
  - $ref: '#/components/schemas/BlankEnum'
72334
+ last_trained_at:
72335
+ type: string
72336
+ format: date-time
72337
+ readOnly: true
72338
+ nullable: true
72333
72339
  required:
72334
72340
  - id
72341
+ - last_trained_at
72335
72342
  - pathway
72336
72343
  - platform_key
72337
72344
  RetrieverDocumentEmbeddingRequest:
@@ -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: 'monorepo-4.8.1-ai-plus',
24
+ VERSION: '4.9.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -29,5 +29,6 @@ export type RetrieverDocumentEmbedding = {
29
29
  */
30
30
  crawler_match_patterns?: any;
31
31
  crawler_pattern_type?: (CrawlerPatternTypeEnum | BlankEnum);
32
+ readonly last_trained_at: string | null;
32
33
  };
33
34