@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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.129.2-core',
113
+ VERSION: '4.130.0-core',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
package/dist/index.esm.js CHANGED
@@ -108,7 +108,7 @@ class CancelablePromise {
108
108
 
109
109
  const OpenAPI = {
110
110
  BASE: 'https://base.manager.iblai.app',
111
- VERSION: '4.129.2-core',
111
+ VERSION: '4.130.0-core',
112
112
  WITH_CREDENTIALS: false,
113
113
  CREDENTIALS: 'include',
114
114
  TOKEN: undefined,
package/dist/index.umd.js CHANGED
@@ -114,7 +114,7 @@
114
114
 
115
115
  const OpenAPI = {
116
116
  BASE: 'https://base.manager.iblai.app',
117
- VERSION: '4.129.2-core',
117
+ VERSION: '4.130.0-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -30,4 +30,5 @@ export type Platform = {
30
30
  * Advertising mode allows a platform to set custom usd balance to allocate for its members
31
31
  */
32
32
  is_advertising?: boolean;
33
+ readonly is_enterprise: string;
33
34
  };
@@ -15,4 +15,5 @@ export type UserPlatformLink = {
15
15
  expired_on?: string | null;
16
16
  readonly public: string;
17
17
  active?: boolean;
18
+ readonly is_enterprise: string;
18
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.129.2-test-core",
3
+ "version": "4.130.0-core",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
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.129.2-core
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
@@ -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: '4.129.2-core',
24
+ VERSION: '4.130.0-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -34,5 +34,6 @@ export type Platform = {
34
34
  * Advertising mode allows a platform to set custom usd balance to allocate for its members
35
35
  */
36
36
  is_advertising?: boolean;
37
+ readonly is_enterprise: string;
37
38
  };
38
39
 
@@ -19,5 +19,6 @@ export type UserPlatformLink = {
19
19
  expired_on?: string | null;
20
20
  readonly public: string;
21
21
  active?: boolean;
22
+ readonly is_enterprise: string;
22
23
  };
23
24