@corti/sdk 0.9.0-rc → 0.9.1-rc
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/cjs/Client.js +2 -2
- package/dist/cjs/api/types/AgentsRegistryExpert.d.ts +3 -0
- package/dist/cjs/api/types/AgentsRegistryMcpServer.d.ts +10 -0
- package/dist/cjs/api/types/AgentsRegistryMcpServer.js +5 -0
- package/dist/cjs/api/types/AgentsRegistryMcpServerAuthorizationType.d.ts +13 -0
- package/dist/cjs/api/types/AgentsRegistryMcpServerAuthorizationType.js +12 -0
- package/dist/cjs/api/types/TranscribeConfig.d.ts +1 -2
- package/dist/cjs/api/types/index.d.ts +2 -0
- package/dist/cjs/api/types/index.js +2 -0
- package/dist/cjs/serialization/types/AgentsRegistryExpert.d.ts +2 -0
- package/dist/cjs/serialization/types/AgentsRegistryExpert.js +2 -0
- package/dist/cjs/serialization/types/AgentsRegistryMcpServer.d.ts +14 -0
- package/dist/cjs/serialization/types/AgentsRegistryMcpServer.js +45 -0
- package/dist/cjs/serialization/types/AgentsRegistryMcpServerAuthorizationType.d.ts +10 -0
- package/dist/cjs/serialization/types/AgentsRegistryMcpServerAuthorizationType.js +41 -0
- package/dist/cjs/serialization/types/TranscribeConfig.d.ts +1 -1
- package/dist/cjs/serialization/types/TranscribeConfig.js +1 -1
- package/dist/cjs/serialization/types/index.d.ts +2 -0
- package/dist/cjs/serialization/types/index.js +2 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/types/AgentsRegistryExpert.d.mts +3 -0
- package/dist/esm/api/types/AgentsRegistryMcpServer.d.mts +10 -0
- package/dist/esm/api/types/AgentsRegistryMcpServer.mjs +4 -0
- package/dist/esm/api/types/AgentsRegistryMcpServerAuthorizationType.d.mts +13 -0
- package/dist/esm/api/types/AgentsRegistryMcpServerAuthorizationType.mjs +9 -0
- package/dist/esm/api/types/TranscribeConfig.d.mts +1 -2
- package/dist/esm/api/types/index.d.mts +2 -0
- package/dist/esm/api/types/index.mjs +2 -0
- package/dist/esm/serialization/types/AgentsRegistryExpert.d.mts +2 -0
- package/dist/esm/serialization/types/AgentsRegistryExpert.mjs +2 -0
- package/dist/esm/serialization/types/AgentsRegistryMcpServer.d.mts +14 -0
- package/dist/esm/serialization/types/AgentsRegistryMcpServer.mjs +9 -0
- package/dist/esm/serialization/types/AgentsRegistryMcpServerAuthorizationType.d.mts +10 -0
- package/dist/esm/serialization/types/AgentsRegistryMcpServerAuthorizationType.mjs +5 -0
- package/dist/esm/serialization/types/TranscribeConfig.d.mts +1 -1
- package/dist/esm/serialization/types/TranscribeConfig.mjs +1 -1
- package/dist/esm/serialization/types/index.d.mts +2 -0
- package/dist/esm/serialization/types/index.mjs +2 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/Client.js
CHANGED
|
@@ -64,8 +64,8 @@ class CortiClient {
|
|
|
64
64
|
"Tenant-Name": _options === null || _options === void 0 ? void 0 : _options.tenantName,
|
|
65
65
|
"X-Fern-Language": "JavaScript",
|
|
66
66
|
"X-Fern-SDK-Name": "@corti/sdk",
|
|
67
|
-
"X-Fern-SDK-Version": "0.9.
|
|
68
|
-
"User-Agent": "@corti/sdk/0.9.
|
|
67
|
+
"X-Fern-SDK-Version": "0.9.1-rc",
|
|
68
|
+
"User-Agent": "@corti/sdk/0.9.1-rc",
|
|
69
69
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
70
70
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
71
71
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
|
+
import * as Corti from "../index.js";
|
|
4
5
|
export interface AgentsRegistryExpert {
|
|
5
6
|
/** The name of the expert. */
|
|
6
7
|
name: string;
|
|
7
8
|
/** A brief description of the expert's capabilities. */
|
|
8
9
|
description: string;
|
|
10
|
+
/** A list of MCP servers the expert can call, including their authorization types. */
|
|
11
|
+
mcpServers?: Corti.AgentsRegistryMcpServer[];
|
|
9
12
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Corti from "../index.js";
|
|
5
|
+
export interface AgentsRegistryMcpServer {
|
|
6
|
+
/** Name of the MCP server. */
|
|
7
|
+
name: string;
|
|
8
|
+
/** Type of authorization used by the MCP server. */
|
|
9
|
+
authorizationType: Corti.AgentsRegistryMcpServerAuthorizationType;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Type of authorization used by the MCP server.
|
|
6
|
+
*/
|
|
7
|
+
export type AgentsRegistryMcpServerAuthorizationType = "none" | "bearer" | "inherit" | "oauth2.0";
|
|
8
|
+
export declare const AgentsRegistryMcpServerAuthorizationType: {
|
|
9
|
+
readonly None: "none";
|
|
10
|
+
readonly Bearer: "bearer";
|
|
11
|
+
readonly Inherit: "inherit";
|
|
12
|
+
readonly Oauth20: "oauth2.0";
|
|
13
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.AgentsRegistryMcpServerAuthorizationType = void 0;
|
|
7
|
+
exports.AgentsRegistryMcpServerAuthorizationType = {
|
|
8
|
+
None: "none",
|
|
9
|
+
Bearer: "bearer",
|
|
10
|
+
Inherit: "inherit",
|
|
11
|
+
Oauth20: "oauth2.0",
|
|
12
|
+
};
|
|
@@ -13,6 +13,5 @@ export interface TranscribeConfig {
|
|
|
13
13
|
automaticPunctuation?: boolean;
|
|
14
14
|
/** Commands that should be registered and detected */
|
|
15
15
|
commands?: Corti.TranscribeCommand[];
|
|
16
|
-
|
|
17
|
-
formatting?: Corti.TranscribeFormatting[];
|
|
16
|
+
formatting?: Corti.TranscribeFormatting;
|
|
18
17
|
}
|
|
@@ -137,6 +137,8 @@ export * from "./AgentsCreateMcpServer.js";
|
|
|
137
137
|
export * from "./AgentsMcpServerTransportType.js";
|
|
138
138
|
export * from "./AgentsMcpServerAuthorizationType.js";
|
|
139
139
|
export * from "./AgentsMcpServer.js";
|
|
140
|
+
export * from "./AgentsRegistryMcpServerAuthorizationType.js";
|
|
141
|
+
export * from "./AgentsRegistryMcpServer.js";
|
|
140
142
|
export * from "./AgentsAgentExpertsItem.js";
|
|
141
143
|
export * from "./AgentsAgent.js";
|
|
142
144
|
export * from "./AgentsAgentReference.js";
|
|
@@ -153,6 +153,8 @@ __exportStar(require("./AgentsCreateMcpServer.js"), exports);
|
|
|
153
153
|
__exportStar(require("./AgentsMcpServerTransportType.js"), exports);
|
|
154
154
|
__exportStar(require("./AgentsMcpServerAuthorizationType.js"), exports);
|
|
155
155
|
__exportStar(require("./AgentsMcpServer.js"), exports);
|
|
156
|
+
__exportStar(require("./AgentsRegistryMcpServerAuthorizationType.js"), exports);
|
|
157
|
+
__exportStar(require("./AgentsRegistryMcpServer.js"), exports);
|
|
156
158
|
__exportStar(require("./AgentsAgentExpertsItem.js"), exports);
|
|
157
159
|
__exportStar(require("./AgentsAgent.js"), exports);
|
|
158
160
|
__exportStar(require("./AgentsAgentReference.js"), exports);
|
|
@@ -4,10 +4,12 @@
|
|
|
4
4
|
import * as serializers from "../index.js";
|
|
5
5
|
import * as Corti from "../../api/index.js";
|
|
6
6
|
import * as core from "../../core/index.js";
|
|
7
|
+
import { AgentsRegistryMcpServer } from "./AgentsRegistryMcpServer.js";
|
|
7
8
|
export declare const AgentsRegistryExpert: core.serialization.ObjectSchema<serializers.AgentsRegistryExpert.Raw, Corti.AgentsRegistryExpert>;
|
|
8
9
|
export declare namespace AgentsRegistryExpert {
|
|
9
10
|
interface Raw {
|
|
10
11
|
name: string;
|
|
11
12
|
description: string;
|
|
13
|
+
mcpServers?: AgentsRegistryMcpServer.Raw[] | null;
|
|
12
14
|
}
|
|
13
15
|
}
|
|
@@ -38,7 +38,9 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
exports.AgentsRegistryExpert = void 0;
|
|
40
40
|
const core = __importStar(require("../../core/index.js"));
|
|
41
|
+
const AgentsRegistryMcpServer_js_1 = require("./AgentsRegistryMcpServer.js");
|
|
41
42
|
exports.AgentsRegistryExpert = core.serialization.object({
|
|
42
43
|
name: core.serialization.string(),
|
|
43
44
|
description: core.serialization.string(),
|
|
45
|
+
mcpServers: core.serialization.list(AgentsRegistryMcpServer_js_1.AgentsRegistryMcpServer).optional(),
|
|
44
46
|
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index.js";
|
|
5
|
+
import * as Corti from "../../api/index.js";
|
|
6
|
+
import * as core from "../../core/index.js";
|
|
7
|
+
import { AgentsRegistryMcpServerAuthorizationType } from "./AgentsRegistryMcpServerAuthorizationType.js";
|
|
8
|
+
export declare const AgentsRegistryMcpServer: core.serialization.ObjectSchema<serializers.AgentsRegistryMcpServer.Raw, Corti.AgentsRegistryMcpServer>;
|
|
9
|
+
export declare namespace AgentsRegistryMcpServer {
|
|
10
|
+
interface Raw {
|
|
11
|
+
name: string;
|
|
12
|
+
authorizationType: AgentsRegistryMcpServerAuthorizationType.Raw;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsRegistryMcpServer = void 0;
|
|
40
|
+
const core = __importStar(require("../../core/index.js"));
|
|
41
|
+
const AgentsRegistryMcpServerAuthorizationType_js_1 = require("./AgentsRegistryMcpServerAuthorizationType.js");
|
|
42
|
+
exports.AgentsRegistryMcpServer = core.serialization.object({
|
|
43
|
+
name: core.serialization.string(),
|
|
44
|
+
authorizationType: AgentsRegistryMcpServerAuthorizationType_js_1.AgentsRegistryMcpServerAuthorizationType,
|
|
45
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index.js";
|
|
5
|
+
import * as Corti from "../../api/index.js";
|
|
6
|
+
import * as core from "../../core/index.js";
|
|
7
|
+
export declare const AgentsRegistryMcpServerAuthorizationType: core.serialization.Schema<serializers.AgentsRegistryMcpServerAuthorizationType.Raw, Corti.AgentsRegistryMcpServerAuthorizationType>;
|
|
8
|
+
export declare namespace AgentsRegistryMcpServerAuthorizationType {
|
|
9
|
+
type Raw = "none" | "bearer" | "inherit" | "oauth2.0";
|
|
10
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AgentsRegistryMcpServerAuthorizationType = void 0;
|
|
40
|
+
const core = __importStar(require("../../core/index.js"));
|
|
41
|
+
exports.AgentsRegistryMcpServerAuthorizationType = core.serialization.enum_(["none", "bearer", "inherit", "oauth2.0"]);
|
|
@@ -15,6 +15,6 @@ export declare namespace TranscribeConfig {
|
|
|
15
15
|
spokenPunctuation?: boolean | null;
|
|
16
16
|
automaticPunctuation?: boolean | null;
|
|
17
17
|
commands?: TranscribeCommand.Raw[] | null;
|
|
18
|
-
formatting?: TranscribeFormatting.Raw
|
|
18
|
+
formatting?: TranscribeFormatting.Raw | null;
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -47,5 +47,5 @@ exports.TranscribeConfig = core.serialization.object({
|
|
|
47
47
|
spokenPunctuation: core.serialization.boolean().optional(),
|
|
48
48
|
automaticPunctuation: core.serialization.boolean().optional(),
|
|
49
49
|
commands: core.serialization.list(TranscribeCommand_js_1.TranscribeCommand).optional(),
|
|
50
|
-
formatting:
|
|
50
|
+
formatting: TranscribeFormatting_js_1.TranscribeFormatting.optional(),
|
|
51
51
|
});
|
|
@@ -137,6 +137,8 @@ export * from "./AgentsCreateMcpServer.js";
|
|
|
137
137
|
export * from "./AgentsMcpServerTransportType.js";
|
|
138
138
|
export * from "./AgentsMcpServerAuthorizationType.js";
|
|
139
139
|
export * from "./AgentsMcpServer.js";
|
|
140
|
+
export * from "./AgentsRegistryMcpServerAuthorizationType.js";
|
|
141
|
+
export * from "./AgentsRegistryMcpServer.js";
|
|
140
142
|
export * from "./AgentsAgentExpertsItem.js";
|
|
141
143
|
export * from "./AgentsAgent.js";
|
|
142
144
|
export * from "./AgentsAgentReference.js";
|
|
@@ -153,6 +153,8 @@ __exportStar(require("./AgentsCreateMcpServer.js"), exports);
|
|
|
153
153
|
__exportStar(require("./AgentsMcpServerTransportType.js"), exports);
|
|
154
154
|
__exportStar(require("./AgentsMcpServerAuthorizationType.js"), exports);
|
|
155
155
|
__exportStar(require("./AgentsMcpServer.js"), exports);
|
|
156
|
+
__exportStar(require("./AgentsRegistryMcpServerAuthorizationType.js"), exports);
|
|
157
|
+
__exportStar(require("./AgentsRegistryMcpServer.js"), exports);
|
|
156
158
|
__exportStar(require("./AgentsAgentExpertsItem.js"), exports);
|
|
157
159
|
__exportStar(require("./AgentsAgent.js"), exports);
|
|
158
160
|
__exportStar(require("./AgentsAgentReference.js"), exports);
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.9.
|
|
1
|
+
export declare const SDK_VERSION = "0.9.1-rc";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -28,8 +28,8 @@ export class CortiClient {
|
|
|
28
28
|
"Tenant-Name": _options === null || _options === void 0 ? void 0 : _options.tenantName,
|
|
29
29
|
"X-Fern-Language": "JavaScript",
|
|
30
30
|
"X-Fern-SDK-Name": "@corti/sdk",
|
|
31
|
-
"X-Fern-SDK-Version": "0.9.
|
|
32
|
-
"User-Agent": "@corti/sdk/0.9.
|
|
31
|
+
"X-Fern-SDK-Version": "0.9.1-rc",
|
|
32
|
+
"User-Agent": "@corti/sdk/0.9.1-rc",
|
|
33
33
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
34
34
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
35
35
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
|
+
import * as Corti from "../index.mjs";
|
|
4
5
|
export interface AgentsRegistryExpert {
|
|
5
6
|
/** The name of the expert. */
|
|
6
7
|
name: string;
|
|
7
8
|
/** A brief description of the expert's capabilities. */
|
|
8
9
|
description: string;
|
|
10
|
+
/** A list of MCP servers the expert can call, including their authorization types. */
|
|
11
|
+
mcpServers?: Corti.AgentsRegistryMcpServer[];
|
|
9
12
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Corti from "../index.mjs";
|
|
5
|
+
export interface AgentsRegistryMcpServer {
|
|
6
|
+
/** Name of the MCP server. */
|
|
7
|
+
name: string;
|
|
8
|
+
/** Type of authorization used by the MCP server. */
|
|
9
|
+
authorizationType: Corti.AgentsRegistryMcpServerAuthorizationType;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Type of authorization used by the MCP server.
|
|
6
|
+
*/
|
|
7
|
+
export type AgentsRegistryMcpServerAuthorizationType = "none" | "bearer" | "inherit" | "oauth2.0";
|
|
8
|
+
export declare const AgentsRegistryMcpServerAuthorizationType: {
|
|
9
|
+
readonly None: "none";
|
|
10
|
+
readonly Bearer: "bearer";
|
|
11
|
+
readonly Inherit: "inherit";
|
|
12
|
+
readonly Oauth20: "oauth2.0";
|
|
13
|
+
};
|
|
@@ -13,6 +13,5 @@ export interface TranscribeConfig {
|
|
|
13
13
|
automaticPunctuation?: boolean;
|
|
14
14
|
/** Commands that should be registered and detected */
|
|
15
15
|
commands?: Corti.TranscribeCommand[];
|
|
16
|
-
|
|
17
|
-
formatting?: Corti.TranscribeFormatting[];
|
|
16
|
+
formatting?: Corti.TranscribeFormatting;
|
|
18
17
|
}
|
|
@@ -137,6 +137,8 @@ export * from "./AgentsCreateMcpServer.mjs";
|
|
|
137
137
|
export * from "./AgentsMcpServerTransportType.mjs";
|
|
138
138
|
export * from "./AgentsMcpServerAuthorizationType.mjs";
|
|
139
139
|
export * from "./AgentsMcpServer.mjs";
|
|
140
|
+
export * from "./AgentsRegistryMcpServerAuthorizationType.mjs";
|
|
141
|
+
export * from "./AgentsRegistryMcpServer.mjs";
|
|
140
142
|
export * from "./AgentsAgentExpertsItem.mjs";
|
|
141
143
|
export * from "./AgentsAgent.mjs";
|
|
142
144
|
export * from "./AgentsAgentReference.mjs";
|
|
@@ -137,6 +137,8 @@ export * from "./AgentsCreateMcpServer.mjs";
|
|
|
137
137
|
export * from "./AgentsMcpServerTransportType.mjs";
|
|
138
138
|
export * from "./AgentsMcpServerAuthorizationType.mjs";
|
|
139
139
|
export * from "./AgentsMcpServer.mjs";
|
|
140
|
+
export * from "./AgentsRegistryMcpServerAuthorizationType.mjs";
|
|
141
|
+
export * from "./AgentsRegistryMcpServer.mjs";
|
|
140
142
|
export * from "./AgentsAgentExpertsItem.mjs";
|
|
141
143
|
export * from "./AgentsAgent.mjs";
|
|
142
144
|
export * from "./AgentsAgentReference.mjs";
|
|
@@ -4,10 +4,12 @@
|
|
|
4
4
|
import * as serializers from "../index.mjs";
|
|
5
5
|
import * as Corti from "../../api/index.mjs";
|
|
6
6
|
import * as core from "../../core/index.mjs";
|
|
7
|
+
import { AgentsRegistryMcpServer } from "./AgentsRegistryMcpServer.mjs";
|
|
7
8
|
export declare const AgentsRegistryExpert: core.serialization.ObjectSchema<serializers.AgentsRegistryExpert.Raw, Corti.AgentsRegistryExpert>;
|
|
8
9
|
export declare namespace AgentsRegistryExpert {
|
|
9
10
|
interface Raw {
|
|
10
11
|
name: string;
|
|
11
12
|
description: string;
|
|
13
|
+
mcpServers?: AgentsRegistryMcpServer.Raw[] | null;
|
|
12
14
|
}
|
|
13
15
|
}
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as core from "../../core/index.mjs";
|
|
5
|
+
import { AgentsRegistryMcpServer } from "./AgentsRegistryMcpServer.mjs";
|
|
5
6
|
export const AgentsRegistryExpert = core.serialization.object({
|
|
6
7
|
name: core.serialization.string(),
|
|
7
8
|
description: core.serialization.string(),
|
|
9
|
+
mcpServers: core.serialization.list(AgentsRegistryMcpServer).optional(),
|
|
8
10
|
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index.mjs";
|
|
5
|
+
import * as Corti from "../../api/index.mjs";
|
|
6
|
+
import * as core from "../../core/index.mjs";
|
|
7
|
+
import { AgentsRegistryMcpServerAuthorizationType } from "./AgentsRegistryMcpServerAuthorizationType.mjs";
|
|
8
|
+
export declare const AgentsRegistryMcpServer: core.serialization.ObjectSchema<serializers.AgentsRegistryMcpServer.Raw, Corti.AgentsRegistryMcpServer>;
|
|
9
|
+
export declare namespace AgentsRegistryMcpServer {
|
|
10
|
+
interface Raw {
|
|
11
|
+
name: string;
|
|
12
|
+
authorizationType: AgentsRegistryMcpServerAuthorizationType.Raw;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as core from "../../core/index.mjs";
|
|
5
|
+
import { AgentsRegistryMcpServerAuthorizationType } from "./AgentsRegistryMcpServerAuthorizationType.mjs";
|
|
6
|
+
export const AgentsRegistryMcpServer = core.serialization.object({
|
|
7
|
+
name: core.serialization.string(),
|
|
8
|
+
authorizationType: AgentsRegistryMcpServerAuthorizationType,
|
|
9
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index.mjs";
|
|
5
|
+
import * as Corti from "../../api/index.mjs";
|
|
6
|
+
import * as core from "../../core/index.mjs";
|
|
7
|
+
export declare const AgentsRegistryMcpServerAuthorizationType: core.serialization.Schema<serializers.AgentsRegistryMcpServerAuthorizationType.Raw, Corti.AgentsRegistryMcpServerAuthorizationType>;
|
|
8
|
+
export declare namespace AgentsRegistryMcpServerAuthorizationType {
|
|
9
|
+
type Raw = "none" | "bearer" | "inherit" | "oauth2.0";
|
|
10
|
+
}
|
|
@@ -15,6 +15,6 @@ export declare namespace TranscribeConfig {
|
|
|
15
15
|
spokenPunctuation?: boolean | null;
|
|
16
16
|
automaticPunctuation?: boolean | null;
|
|
17
17
|
commands?: TranscribeCommand.Raw[] | null;
|
|
18
|
-
formatting?: TranscribeFormatting.Raw
|
|
18
|
+
formatting?: TranscribeFormatting.Raw | null;
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -11,5 +11,5 @@ export const TranscribeConfig = core.serialization.object({
|
|
|
11
11
|
spokenPunctuation: core.serialization.boolean().optional(),
|
|
12
12
|
automaticPunctuation: core.serialization.boolean().optional(),
|
|
13
13
|
commands: core.serialization.list(TranscribeCommand).optional(),
|
|
14
|
-
formatting:
|
|
14
|
+
formatting: TranscribeFormatting.optional(),
|
|
15
15
|
});
|
|
@@ -137,6 +137,8 @@ export * from "./AgentsCreateMcpServer.mjs";
|
|
|
137
137
|
export * from "./AgentsMcpServerTransportType.mjs";
|
|
138
138
|
export * from "./AgentsMcpServerAuthorizationType.mjs";
|
|
139
139
|
export * from "./AgentsMcpServer.mjs";
|
|
140
|
+
export * from "./AgentsRegistryMcpServerAuthorizationType.mjs";
|
|
141
|
+
export * from "./AgentsRegistryMcpServer.mjs";
|
|
140
142
|
export * from "./AgentsAgentExpertsItem.mjs";
|
|
141
143
|
export * from "./AgentsAgent.mjs";
|
|
142
144
|
export * from "./AgentsAgentReference.mjs";
|
|
@@ -137,6 +137,8 @@ export * from "./AgentsCreateMcpServer.mjs";
|
|
|
137
137
|
export * from "./AgentsMcpServerTransportType.mjs";
|
|
138
138
|
export * from "./AgentsMcpServerAuthorizationType.mjs";
|
|
139
139
|
export * from "./AgentsMcpServer.mjs";
|
|
140
|
+
export * from "./AgentsRegistryMcpServerAuthorizationType.mjs";
|
|
141
|
+
export * from "./AgentsRegistryMcpServer.mjs";
|
|
140
142
|
export * from "./AgentsAgentExpertsItem.mjs";
|
|
141
143
|
export * from "./AgentsAgent.mjs";
|
|
142
144
|
export * from "./AgentsAgentReference.mjs";
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.9.
|
|
1
|
+
export declare const SDK_VERSION = "0.9.1-rc";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "0.9.
|
|
1
|
+
export const SDK_VERSION = "0.9.1-rc";
|