@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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/RetrieverDocumentEmbedding.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/RetrieverDocumentEmbedding.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
|
+
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:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -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: '
|
|
24
|
+
VERSION: '4.9.0-ai-plus',
|
|
25
25
|
WITH_CREDENTIALS: false,
|
|
26
26
|
CREDENTIALS: 'include',
|
|
27
27
|
TOKEN: undefined,
|