@iblai/iblai-api 4.129.2-test-core → 4.130.0-core
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-core
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/analytics/content/:
|
|
@@ -40283,7 +40283,11 @@ components:
|
|
|
40283
40283
|
type: boolean
|
|
40284
40284
|
description: Advertising mode allows a platform to set custom usd balance
|
|
40285
40285
|
to allocate for its members
|
|
40286
|
+
is_enterprise:
|
|
40287
|
+
type: string
|
|
40288
|
+
readOnly: true
|
|
40286
40289
|
required:
|
|
40290
|
+
- is_enterprise
|
|
40287
40291
|
- key
|
|
40288
40292
|
PlatformApiKey:
|
|
40289
40293
|
type: object
|
|
@@ -45455,9 +45459,13 @@ components:
|
|
|
45455
45459
|
readOnly: true
|
|
45456
45460
|
active:
|
|
45457
45461
|
type: boolean
|
|
45462
|
+
is_enterprise:
|
|
45463
|
+
type: string
|
|
45464
|
+
readOnly: true
|
|
45458
45465
|
required:
|
|
45459
45466
|
- cms_url
|
|
45460
45467
|
- email
|
|
45468
|
+
- is_enterprise
|
|
45461
45469
|
- key
|
|
45462
45470
|
- lms_url
|
|
45463
45471
|
- org
|
package/src/core/OpenAPI.ts
CHANGED
package/src/models/Platform.ts
CHANGED