@iblai/iblai-api 4.92.1-ai → 4.93.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
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.92.1-ai-plus',
113
+ VERSION: '4.93.0-ai-plus',
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.92.1-ai-plus',
111
+ VERSION: '4.93.0-ai-plus',
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.92.1-ai-plus',
117
+ VERSION: '4.93.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -1,4 +1,5 @@
1
1
  import type { AuthTypeEnum } from './AuthTypeEnum';
2
+ import type { OAuthService } from './OAuthService';
2
3
  import type { TransportEnum } from './TransportEnum';
3
4
  /**
4
5
  * Serializer for the MCPServer model.
@@ -38,6 +39,8 @@ export type MCPServer = {
38
39
  * * `oauth2` - Oauth2
39
40
  */
40
41
  auth_type?: AuthTypeEnum;
42
+ oauth_service?: number | null;
43
+ readonly oauth_service_data: OAuthService;
41
44
  /**
42
45
  * Whether the MCP server is enabled or not.
43
46
  */
@@ -4,6 +4,7 @@
4
4
  export type OAuthService = {
5
5
  readonly id: number;
6
6
  readonly oauth_provider: string;
7
+ oauth_provider_id?: number | null;
7
8
  readonly name: string;
8
9
  /**
9
10
  * Human readable label for the OAuth service scope.
@@ -1,4 +1,5 @@
1
1
  import type { AuthTypeEnum } from './AuthTypeEnum';
2
+ import type { OAuthService } from './OAuthService';
2
3
  import type { TransportEnum } from './TransportEnum';
3
4
  /**
4
5
  * Serializer for the MCPServer model.
@@ -38,6 +39,8 @@ export type PatchedMCPServer = {
38
39
  * * `oauth2` - Oauth2
39
40
  */
40
41
  auth_type?: AuthTypeEnum;
42
+ oauth_service?: number | null;
43
+ readonly oauth_service_data?: OAuthService;
41
44
  /**
42
45
  * Whether the MCP server is enabled or not.
43
46
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.92.1-ai",
3
+ "version": "4.93.0-ai",
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.92.1-ai-plus
4
+ version: 4.93.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -75823,6 +75823,14 @@ components:
75823
75823
  * `none` - None
75824
75824
  * `token` - Token
75825
75825
  * `oauth2` - Oauth2
75826
+ oauth_service:
75827
+ type: integer
75828
+ writeOnly: true
75829
+ nullable: true
75830
+ oauth_service_data:
75831
+ allOf:
75832
+ - $ref: '#/components/schemas/OAuthService'
75833
+ readOnly: true
75826
75834
  is_enabled:
75827
75835
  type: boolean
75828
75836
  description: Whether the MCP server is enabled or not.
@@ -75838,6 +75846,7 @@ components:
75838
75846
  - created_at
75839
75847
  - id
75840
75848
  - name
75849
+ - oauth_service_data
75841
75850
  - platform
75842
75851
  - platform_key
75843
75852
  - updated_at
@@ -78899,6 +78908,9 @@ components:
78899
78908
  oauth_provider:
78900
78909
  type: string
78901
78910
  readOnly: true
78911
+ oauth_provider_id:
78912
+ type: integer
78913
+ nullable: true
78902
78914
  name:
78903
78915
  type: string
78904
78916
  readOnly: true
@@ -81250,6 +81262,14 @@ components:
81250
81262
  * `none` - None
81251
81263
  * `token` - Token
81252
81264
  * `oauth2` - Oauth2
81265
+ oauth_service:
81266
+ type: integer
81267
+ writeOnly: true
81268
+ nullable: true
81269
+ oauth_service_data:
81270
+ allOf:
81271
+ - $ref: '#/components/schemas/OAuthService'
81272
+ readOnly: true
81253
81273
  is_enabled:
81254
81274
  type: boolean
81255
81275
  description: Whether the MCP server is enabled or not.
@@ -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.92.1-ai-plus',
24
+ VERSION: '4.93.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -3,6 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { AuthTypeEnum } from './AuthTypeEnum';
6
+ import type { OAuthService } from './OAuthService';
6
7
  import type { TransportEnum } from './TransportEnum';
7
8
  /**
8
9
  * Serializer for the MCPServer model.
@@ -42,6 +43,8 @@ export type MCPServer = {
42
43
  * * `oauth2` - Oauth2
43
44
  */
44
45
  auth_type?: AuthTypeEnum;
46
+ oauth_service?: number | null;
47
+ readonly oauth_service_data: OAuthService;
45
48
  /**
46
49
  * Whether the MCP server is enabled or not.
47
50
  */
@@ -8,6 +8,7 @@
8
8
  export type OAuthService = {
9
9
  readonly id: number;
10
10
  readonly oauth_provider: string;
11
+ oauth_provider_id?: number | null;
11
12
  readonly name: string;
12
13
  /**
13
14
  * Human readable label for the OAuth service scope.
@@ -3,6 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { AuthTypeEnum } from './AuthTypeEnum';
6
+ import type { OAuthService } from './OAuthService';
6
7
  import type { TransportEnum } from './TransportEnum';
7
8
  /**
8
9
  * Serializer for the MCPServer model.
@@ -42,6 +43,8 @@ export type PatchedMCPServer = {
42
43
  * * `oauth2` - Oauth2
43
44
  */
44
45
  auth_type?: AuthTypeEnum;
46
+ oauth_service?: number | null;
47
+ readonly oauth_service_data?: OAuthService;
45
48
  /**
46
49
  * Whether the MCP server is enabled or not.
47
50
  */