@iblai/iblai-api 4.177.0-core → 4.178.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 +4 -0
- package/dist/types/models/UserPlatformLink.d.ts +1 -0
- package/package.json +1 -1
- package/sdk_schema.yml +11 -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
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.178.0-core
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/account/:
|
|
@@ -41202,9 +41202,15 @@ components:
|
|
|
41202
41202
|
is_enterprise:
|
|
41203
41203
|
type: string
|
|
41204
41204
|
readOnly: true
|
|
41205
|
+
show_paywall:
|
|
41206
|
+
type: boolean
|
|
41207
|
+
readOnly: true
|
|
41208
|
+
description: If True, billing status/credit checks are enforced for this
|
|
41209
|
+
platform's users
|
|
41205
41210
|
required:
|
|
41206
41211
|
- is_enterprise
|
|
41207
41212
|
- key
|
|
41213
|
+
- show_paywall
|
|
41208
41214
|
PlatformApiKey:
|
|
41209
41215
|
type: object
|
|
41210
41216
|
description: Serializer for PlatformApiKey's
|
|
@@ -46480,6 +46486,9 @@ components:
|
|
|
46480
46486
|
is_enterprise:
|
|
46481
46487
|
type: string
|
|
46482
46488
|
readOnly: true
|
|
46489
|
+
show_paywall:
|
|
46490
|
+
type: boolean
|
|
46491
|
+
readOnly: true
|
|
46483
46492
|
required:
|
|
46484
46493
|
- cms_url
|
|
46485
46494
|
- email
|
|
@@ -46490,6 +46499,7 @@ components:
|
|
|
46490
46499
|
- platform_name
|
|
46491
46500
|
- portal_url
|
|
46492
46501
|
- public
|
|
46502
|
+
- show_paywall
|
|
46493
46503
|
- user_active
|
|
46494
46504
|
- user_id
|
|
46495
46505
|
- username
|
package/src/core/OpenAPI.ts
CHANGED
package/src/models/Platform.ts
CHANGED