@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.
Files changed (43) hide show
  1. package/dist/cjs/Client.js +2 -2
  2. package/dist/cjs/api/types/AgentsRegistryExpert.d.ts +3 -0
  3. package/dist/cjs/api/types/AgentsRegistryMcpServer.d.ts +10 -0
  4. package/dist/cjs/api/types/AgentsRegistryMcpServer.js +5 -0
  5. package/dist/cjs/api/types/AgentsRegistryMcpServerAuthorizationType.d.ts +13 -0
  6. package/dist/cjs/api/types/AgentsRegistryMcpServerAuthorizationType.js +12 -0
  7. package/dist/cjs/api/types/TranscribeConfig.d.ts +1 -2
  8. package/dist/cjs/api/types/index.d.ts +2 -0
  9. package/dist/cjs/api/types/index.js +2 -0
  10. package/dist/cjs/serialization/types/AgentsRegistryExpert.d.ts +2 -0
  11. package/dist/cjs/serialization/types/AgentsRegistryExpert.js +2 -0
  12. package/dist/cjs/serialization/types/AgentsRegistryMcpServer.d.ts +14 -0
  13. package/dist/cjs/serialization/types/AgentsRegistryMcpServer.js +45 -0
  14. package/dist/cjs/serialization/types/AgentsRegistryMcpServerAuthorizationType.d.ts +10 -0
  15. package/dist/cjs/serialization/types/AgentsRegistryMcpServerAuthorizationType.js +41 -0
  16. package/dist/cjs/serialization/types/TranscribeConfig.d.ts +1 -1
  17. package/dist/cjs/serialization/types/TranscribeConfig.js +1 -1
  18. package/dist/cjs/serialization/types/index.d.ts +2 -0
  19. package/dist/cjs/serialization/types/index.js +2 -0
  20. package/dist/cjs/version.d.ts +1 -1
  21. package/dist/cjs/version.js +1 -1
  22. package/dist/esm/Client.mjs +2 -2
  23. package/dist/esm/api/types/AgentsRegistryExpert.d.mts +3 -0
  24. package/dist/esm/api/types/AgentsRegistryMcpServer.d.mts +10 -0
  25. package/dist/esm/api/types/AgentsRegistryMcpServer.mjs +4 -0
  26. package/dist/esm/api/types/AgentsRegistryMcpServerAuthorizationType.d.mts +13 -0
  27. package/dist/esm/api/types/AgentsRegistryMcpServerAuthorizationType.mjs +9 -0
  28. package/dist/esm/api/types/TranscribeConfig.d.mts +1 -2
  29. package/dist/esm/api/types/index.d.mts +2 -0
  30. package/dist/esm/api/types/index.mjs +2 -0
  31. package/dist/esm/serialization/types/AgentsRegistryExpert.d.mts +2 -0
  32. package/dist/esm/serialization/types/AgentsRegistryExpert.mjs +2 -0
  33. package/dist/esm/serialization/types/AgentsRegistryMcpServer.d.mts +14 -0
  34. package/dist/esm/serialization/types/AgentsRegistryMcpServer.mjs +9 -0
  35. package/dist/esm/serialization/types/AgentsRegistryMcpServerAuthorizationType.d.mts +10 -0
  36. package/dist/esm/serialization/types/AgentsRegistryMcpServerAuthorizationType.mjs +5 -0
  37. package/dist/esm/serialization/types/TranscribeConfig.d.mts +1 -1
  38. package/dist/esm/serialization/types/TranscribeConfig.mjs +1 -1
  39. package/dist/esm/serialization/types/index.d.mts +2 -0
  40. package/dist/esm/serialization/types/index.mjs +2 -0
  41. package/dist/esm/version.d.mts +1 -1
  42. package/dist/esm/version.mjs +1 -1
  43. package/package.json +1 -1
@@ -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.0-rc",
68
- "User-Agent": "@corti/sdk/0.9.0-rc",
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,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
- /** Formatting preferences */
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[] | null;
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: core.serialization.list(TranscribeFormatting_js_1.TranscribeFormatting).optional(),
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);
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.9.0-rc";
1
+ export declare const SDK_VERSION = "0.9.1-rc";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.9.0-rc";
4
+ exports.SDK_VERSION = "0.9.1-rc";
@@ -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.0-rc",
32
- "User-Agent": "@corti/sdk/0.9.0-rc",
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,4 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export {};
@@ -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,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export const AgentsRegistryMcpServerAuthorizationType = {
5
+ None: "none",
6
+ Bearer: "bearer",
7
+ Inherit: "inherit",
8
+ Oauth20: "oauth2.0",
9
+ };
@@ -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
- /** Formatting preferences */
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
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../core/index.mjs";
5
+ export const 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[] | null;
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: core.serialization.list(TranscribeFormatting).optional(),
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";
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.9.0-rc";
1
+ export declare const SDK_VERSION = "0.9.1-rc";
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.9.0-rc";
1
+ export const SDK_VERSION = "0.9.1-rc";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corti/sdk",
3
- "version": "0.9.0-rc",
3
+ "version": "0.9.1-rc",
4
4
  "private": false,
5
5
  "repository": "github:corticph/corti-sdk-javascript",
6
6
  "license": "MIT",