@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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/MCPServer.d.ts +3 -0
- package/dist/types/models/OAuthService.d.ts +1 -0
- package/dist/types/models/PatchedMCPServer.d.ts +3 -0
- package/package.json +1 -1
- package/sdk_schema.yml +21 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/MCPServer.ts +3 -0
- package/src/models/OAuthService.ts +1 -0
- package/src/models/PatchedMCPServer.ts +3 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -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
|
*/
|
|
@@ -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
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.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.
|
package/src/core/OpenAPI.ts
CHANGED
package/src/models/MCPServer.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -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
|
*/
|