@iblai/iblai-api 4.254.0-core → 4.255.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.254.0-core',
113
+ VERSION: '4.255.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.254.0-core',
111
+ VERSION: '4.255.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.254.0-core',
117
+ VERSION: '4.255.0-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -35,4 +35,8 @@ export type Platform = {
35
35
  * If True, billing status/credit checks are enforced for this platform's users
36
36
  */
37
37
  readonly show_paywall: boolean;
38
+ /**
39
+ * If True, this platform can resell via Stripe Connect (act as a merchant of record). Separate from show_paywall, which controls billing/credits enforcement.
40
+ */
41
+ readonly enable_monetization: boolean;
38
42
  };
@@ -17,4 +17,5 @@ export type UserPlatformLink = {
17
17
  active?: boolean;
18
18
  readonly is_enterprise: string;
19
19
  readonly show_paywall: boolean;
20
+ readonly enable_monetization: boolean;
20
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.254.0-core",
3
+ "version": "4.255.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.254.0-core
4
+ version: 4.255.0-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /access-check/{item_type}/{item_id}/:
@@ -46384,7 +46384,14 @@ components:
46384
46384
  readOnly: true
46385
46385
  description: If True, billing status/credit checks are enforced for this
46386
46386
  platform's users
46387
+ enable_monetization:
46388
+ type: boolean
46389
+ readOnly: true
46390
+ description: If True, this platform can resell via Stripe Connect (act as
46391
+ a merchant of record). Separate from show_paywall, which controls billing/credits
46392
+ enforcement.
46387
46393
  required:
46394
+ - enable_monetization
46388
46395
  - is_enterprise
46389
46396
  - key
46390
46397
  - show_paywall
@@ -51929,9 +51936,13 @@ components:
51929
51936
  show_paywall:
51930
51937
  type: boolean
51931
51938
  readOnly: true
51939
+ enable_monetization:
51940
+ type: boolean
51941
+ readOnly: true
51932
51942
  required:
51933
51943
  - cms_url
51934
51944
  - email
51945
+ - enable_monetization
51935
51946
  - is_enterprise
51936
51947
  - key
51937
51948
  - lms_url
@@ -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.254.0-core',
24
+ VERSION: '4.255.0-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -39,5 +39,9 @@ export type Platform = {
39
39
  * If True, billing status/credit checks are enforced for this platform's users
40
40
  */
41
41
  readonly show_paywall: boolean;
42
+ /**
43
+ * If True, this platform can resell via Stripe Connect (act as a merchant of record). Separate from show_paywall, which controls billing/credits enforcement.
44
+ */
45
+ readonly enable_monetization: boolean;
42
46
  };
43
47
 
@@ -21,5 +21,6 @@ export type UserPlatformLink = {
21
21
  active?: boolean;
22
22
  readonly is_enterprise: string;
23
23
  readonly show_paywall: boolean;
24
+ readonly enable_monetization: boolean;
24
25
  };
25
26