@iblai/iblai-api 4.258.0-ai → 4.259.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
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -61,6 +61,10 @@ export type CreditAccountInfo = {
|
|
|
61
61
|
* True if the user has a payment method on file (can use manual top-up and auto-recharge).
|
|
62
62
|
*/
|
|
63
63
|
readonly has_payment_method: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* True if the requesting user is the user that owns this credit account (account.user).
|
|
66
|
+
*/
|
|
67
|
+
readonly is_owner: boolean;
|
|
64
68
|
/**
|
|
65
69
|
* Message explaining why credits are insufficient (only present when has_credits is False).
|
|
66
70
|
*/
|
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.259.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/access-check/{item_type}/{item_id}/:
|
|
@@ -84336,6 +84336,11 @@ components:
|
|
|
84336
84336
|
readOnly: true
|
|
84337
84337
|
description: True if the user has a payment method on file (can use manual
|
|
84338
84338
|
top-up and auto-recharge).
|
|
84339
|
+
is_owner:
|
|
84340
|
+
type: boolean
|
|
84341
|
+
readOnly: true
|
|
84342
|
+
description: True if the requesting user is the user that owns this credit
|
|
84343
|
+
account (account.user).
|
|
84339
84344
|
message:
|
|
84340
84345
|
type: string
|
|
84341
84346
|
readOnly: true
|
|
@@ -84353,6 +84358,7 @@ components:
|
|
|
84353
84358
|
- free_trial
|
|
84354
84359
|
- has_credits
|
|
84355
84360
|
- has_payment_method
|
|
84361
|
+
- is_owner
|
|
84356
84362
|
- message
|
|
84357
84363
|
- platform_key
|
|
84358
84364
|
- previous_plan
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -65,6 +65,10 @@ export type CreditAccountInfo = {
|
|
|
65
65
|
* True if the user has a payment method on file (can use manual top-up and auto-recharge).
|
|
66
66
|
*/
|
|
67
67
|
readonly has_payment_method: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* True if the requesting user is the user that owns this credit account (account.user).
|
|
70
|
+
*/
|
|
71
|
+
readonly is_owner: boolean;
|
|
68
72
|
/**
|
|
69
73
|
* Message explaining why credits are insufficient (only present when has_credits is False).
|
|
70
74
|
*/
|