@iblai/iblai-api 4.129.2-test-ai → 4.130.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/Platform.d.ts +1 -0
- package/dist/types/models/UserPlatformLink.d.ts +1 -0
- package/package.json +1 -1
- package/sdk_schema.yml +9 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/Platform.ts +1 -0
- package/src/models/UserPlatformLink.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.130.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -86028,7 +86028,11 @@ components:
|
|
|
86028
86028
|
type: boolean
|
|
86029
86029
|
description: Advertising mode allows a platform to set custom usd balance
|
|
86030
86030
|
to allocate for its members
|
|
86031
|
+
is_enterprise:
|
|
86032
|
+
type: string
|
|
86033
|
+
readOnly: true
|
|
86031
86034
|
required:
|
|
86035
|
+
- is_enterprise
|
|
86032
86036
|
- key
|
|
86033
86037
|
PlatformApiKey:
|
|
86034
86038
|
type: object
|
|
@@ -94070,9 +94074,13 @@ components:
|
|
|
94070
94074
|
readOnly: true
|
|
94071
94075
|
active:
|
|
94072
94076
|
type: boolean
|
|
94077
|
+
is_enterprise:
|
|
94078
|
+
type: string
|
|
94079
|
+
readOnly: true
|
|
94073
94080
|
required:
|
|
94074
94081
|
- cms_url
|
|
94075
94082
|
- email
|
|
94083
|
+
- is_enterprise
|
|
94076
94084
|
- key
|
|
94077
94085
|
- lms_url
|
|
94078
94086
|
- org
|
package/src/core/OpenAPI.ts
CHANGED
package/src/models/Platform.ts
CHANGED