@iblai/iblai-api 4.68.2-ai → 4.69.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 +4 -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.
|
|
4
|
+
version: 4.69.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -83898,6 +83898,8 @@ components:
|
|
|
83898
83898
|
document_type:
|
|
83899
83899
|
type: string
|
|
83900
83900
|
nullable: true
|
|
83901
|
+
username:
|
|
83902
|
+
type: string
|
|
83901
83903
|
training_status:
|
|
83902
83904
|
nullable: true
|
|
83903
83905
|
oneOf:
|
|
@@ -83949,6 +83951,7 @@ components:
|
|
|
83949
83951
|
- last_trained_at
|
|
83950
83952
|
- pathway
|
|
83951
83953
|
- platform_key
|
|
83954
|
+
- username
|
|
83952
83955
|
RetrieverDocumentEmbeddingRequest:
|
|
83953
83956
|
type: object
|
|
83954
83957
|
properties:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type RetrieverDocumentEmbedding = {
|
|
|
12
12
|
metadata?: any;
|
|
13
13
|
document_name?: string | null;
|
|
14
14
|
document_type?: string | null;
|
|
15
|
+
username: string;
|
|
15
16
|
training_status?: (TrainingStatusEnum | BlankEnum | NullEnum) | null;
|
|
16
17
|
pathway: string;
|
|
17
18
|
url?: string | null;
|