@iblai/iblai-api 4.254.0-ai → 4.255.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 +4 -0
- package/dist/types/models/UserPlatformLink.d.ts +1 -0
- package/package.json +1 -1
- package/sdk_schema.yml +12 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/Platform.ts +4 -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
|
@@ -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
|
};
|
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.255.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/access-check/{item_type}/{item_id}/:
|
|
@@ -98868,7 +98868,14 @@ components:
|
|
|
98868
98868
|
readOnly: true
|
|
98869
98869
|
description: If True, billing status/credit checks are enforced for this
|
|
98870
98870
|
platform's users
|
|
98871
|
+
enable_monetization:
|
|
98872
|
+
type: boolean
|
|
98873
|
+
readOnly: true
|
|
98874
|
+
description: If True, this platform can resell via Stripe Connect (act as
|
|
98875
|
+
a merchant of record). Separate from show_paywall, which controls billing/credits
|
|
98876
|
+
enforcement.
|
|
98871
98877
|
required:
|
|
98878
|
+
- enable_monetization
|
|
98872
98879
|
- is_enterprise
|
|
98873
98880
|
- key
|
|
98874
98881
|
- show_paywall
|
|
@@ -107240,9 +107247,13 @@ components:
|
|
|
107240
107247
|
show_paywall:
|
|
107241
107248
|
type: boolean
|
|
107242
107249
|
readOnly: true
|
|
107250
|
+
enable_monetization:
|
|
107251
|
+
type: boolean
|
|
107252
|
+
readOnly: true
|
|
107243
107253
|
required:
|
|
107244
107254
|
- cms_url
|
|
107245
107255
|
- email
|
|
107256
|
+
- enable_monetization
|
|
107246
107257
|
- is_enterprise
|
|
107247
107258
|
- key
|
|
107248
107259
|
- lms_url
|
package/src/core/OpenAPI.ts
CHANGED
package/src/models/Platform.ts
CHANGED
|
@@ -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
|
|