@iblai/iblai-api 4.97.2-ai → 4.98.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/UserMemory.d.ts +1 -0
- package/package.json +1 -1
- package/sdk_schema.yml +6 -2
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/UserMemory.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.98.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -4037,7 +4037,7 @@ paths:
|
|
|
4037
4037
|
end_date: '2023-06-30'
|
|
4038
4038
|
- start_date: '2023-07-01'
|
|
4039
4039
|
end_date: '2023-07-31'
|
|
4040
|
-
|
|
4040
|
+
sentiment:
|
|
4041
4041
|
- positive
|
|
4042
4042
|
- negative
|
|
4043
4043
|
- neutral
|
|
@@ -91712,6 +91712,9 @@ components:
|
|
|
91712
91712
|
UserMemory:
|
|
91713
91713
|
type: object
|
|
91714
91714
|
properties:
|
|
91715
|
+
id:
|
|
91716
|
+
type: integer
|
|
91717
|
+
readOnly: true
|
|
91715
91718
|
mode:
|
|
91716
91719
|
type: string
|
|
91717
91720
|
readOnly: true
|
|
@@ -91768,6 +91771,7 @@ components:
|
|
|
91768
91771
|
- catalog_item_type
|
|
91769
91772
|
- email
|
|
91770
91773
|
- entries
|
|
91774
|
+
- id
|
|
91771
91775
|
- inserted_at
|
|
91772
91776
|
- mentor
|
|
91773
91777
|
- mode
|
package/src/core/OpenAPI.ts
CHANGED