@iblai/iblai-api 4.183.2-ai → 4.184.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
|
@@ -10,12 +10,4 @@ export type ConfigurationItem = {
|
|
|
10
10
|
* Configuration value stored as JSON
|
|
11
11
|
*/
|
|
12
12
|
value: any;
|
|
13
|
-
/**
|
|
14
|
-
* Optional description for the configuration
|
|
15
|
-
*/
|
|
16
|
-
description?: string;
|
|
17
|
-
/**
|
|
18
|
-
* If True, this configuration will be visible to platform members
|
|
19
|
-
*/
|
|
20
|
-
is_public?: boolean;
|
|
21
13
|
};
|
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.184.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/access-check/{item_type}/{item_id}/:
|
|
@@ -75887,14 +75887,6 @@ components:
|
|
|
75887
75887
|
maxLength: 255
|
|
75888
75888
|
value:
|
|
75889
75889
|
description: Configuration value stored as JSON
|
|
75890
|
-
description:
|
|
75891
|
-
type: string
|
|
75892
|
-
default: ''
|
|
75893
|
-
description: Optional description for the configuration
|
|
75894
|
-
is_public:
|
|
75895
|
-
type: boolean
|
|
75896
|
-
default: false
|
|
75897
|
-
description: If True, this configuration will be visible to platform members
|
|
75898
75890
|
required:
|
|
75899
75891
|
- key
|
|
75900
75892
|
- value
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -14,13 +14,5 @@ export type ConfigurationItem = {
|
|
|
14
14
|
* Configuration value stored as JSON
|
|
15
15
|
*/
|
|
16
16
|
value: any;
|
|
17
|
-
/**
|
|
18
|
-
* Optional description for the configuration
|
|
19
|
-
*/
|
|
20
|
-
description?: string;
|
|
21
|
-
/**
|
|
22
|
-
* If True, this configuration will be visible to platform members
|
|
23
|
-
*/
|
|
24
|
-
is_public?: boolean;
|
|
25
17
|
};
|
|
26
18
|
|