@corti/sdk 1.0.0-rc.4 → 1.0.0-rc.6

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.
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "@corti/sdk",
46
- "X-Fern-SDK-Version": "1.0.0-rc.4",
47
- "User-Agent": "@corti/sdk/1.0.0-rc.4",
46
+ "X-Fern-SDK-Version": "1.0.0-rc.6",
47
+ "User-Agent": "@corti/sdk/1.0.0-rc.6",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  "Tenant-Name": options === null || options === void 0 ? void 0 : options.tenantName,
@@ -1,25 +1,10 @@
1
- import type { OAuthAuthProvider } from "../auth/OAuthAuthProvider.js";
2
1
  import { CortiClient as BaseCortiClient } from "../Client.js";
3
2
  import type * as environments from "../environments.js";
3
+ import { CustomAgents } from "./agents/CustomAgents.js";
4
4
  import { CortiAuth } from "./auth/CortiAuth.js";
5
5
  import { CustomStream } from "./stream/CustomStream.js";
6
6
  import { CustomTranscribe } from "./transcribe/CustomTranscribe.js";
7
7
  import { type Environment } from "./utils/environment.js";
8
- type TokenDerivableAuth = {
9
- accessToken: string;
10
- refreshAccessToken?: OAuthAuthProvider.RefreshAccessTokenFunction;
11
- expiresIn?: number;
12
- refreshToken?: string;
13
- refreshExpiresIn?: number;
14
- clientId?: string;
15
- } | {
16
- refreshAccessToken: OAuthAuthProvider.RefreshAccessTokenFunction;
17
- accessToken?: string;
18
- expiresIn?: number;
19
- refreshToken?: string;
20
- refreshExpiresIn?: number;
21
- clientId?: string;
22
- };
23
8
  type OptionsBase = Omit<BaseCortiClient.Options, "clientId" | "clientSecret" | "token" | "environment" | "tenantName" | "baseUrl"> & {
24
9
  withCredentials?: boolean;
25
10
  /**
@@ -30,71 +15,23 @@ type OptionsBase = Omit<BaseCortiClient.Options, "clientId" | "clientSecret" | "
30
15
  encodeHeadersAsWsProtocols?: boolean;
31
16
  };
32
17
  export declare namespace CortiClient {
33
- type Auth = {
34
- clientId: string;
35
- clientSecret: string;
36
- } | {
37
- accessToken: string;
38
- refreshAccessToken?: OAuthAuthProvider.RefreshAccessTokenFunction;
39
- expiresIn?: number;
40
- refreshToken?: string;
41
- refreshExpiresIn?: number;
42
- clientId?: string;
43
- } | {
44
- clientId: string;
45
- username: string;
46
- password: string;
47
- } | {
48
- clientId: string;
49
- clientSecret: string;
50
- code: string;
51
- redirectUri: string;
52
- } | {
53
- clientId: string;
54
- code: string;
55
- redirectUri: string;
56
- codeVerifier?: string;
57
- } | {
58
- refreshAccessToken: OAuthAuthProvider.RefreshAccessTokenFunction;
59
- accessToken?: string;
60
- expiresIn?: number;
61
- refreshToken?: string;
62
- refreshExpiresIn?: number;
63
- clientId?: string;
64
- };
18
+ type Auth = CortiAuth.AuthServer | CortiAuth.AuthTokenDerivable;
65
19
  type Options = (OptionsBase & {
66
- auth: {
67
- clientId: string;
68
- clientSecret: string;
69
- } | {
70
- clientId: string;
71
- username: string;
72
- password: string;
73
- } | {
74
- clientId: string;
75
- clientSecret: string;
76
- code: string;
77
- redirectUri: string;
78
- } | {
79
- clientId: string;
80
- code: string;
81
- redirectUri: string;
82
- codeVerifier?: string;
83
- };
20
+ auth: CortiAuth.AuthServer;
84
21
  tenantName: string;
85
22
  environment: Environment;
86
23
  }) | (OptionsBase & {
87
- auth: TokenDerivableAuth;
24
+ auth: CortiAuth.AuthTokenDerivable;
88
25
  tenantName?: string;
89
26
  environment?: Environment;
90
27
  }) | (OptionsBase & {
91
28
  baseUrl: string;
92
- auth?: CortiClient.Auth;
29
+ auth?: Auth;
93
30
  tenantName?: string;
94
31
  environment?: Environment;
95
32
  }) | (OptionsBase & {
96
33
  environment: environments.CortiEnvironmentUrls;
97
- auth?: CortiClient.Auth;
34
+ auth?: Auth;
98
35
  tenantName?: string;
99
36
  });
100
37
  interface RequestOptions extends BaseCortiClient.RequestOptions {
@@ -104,10 +41,29 @@ export declare class CortiClient extends BaseCortiClient {
104
41
  protected _auth: CortiAuth | undefined;
105
42
  protected _stream: CustomStream | undefined;
106
43
  protected _transcribe: CustomTranscribe | undefined;
44
+ protected _agents: CustomAgents | undefined;
107
45
  private readonly _encodeHeadersAsWsProtocols;
108
46
  constructor(options: CortiClient.Options);
109
47
  get auth(): CortiAuth;
110
48
  get stream(): CustomStream;
111
49
  get transcribe(): CustomTranscribe;
50
+ get agents(): CustomAgents;
51
+ /**
52
+ * Retrieves authentication headers for API requests.
53
+ *
54
+ * This method returns a Headers object containing the Authorization header with a valid
55
+ * bearer token and the Tenant-Name header. The token is automatically refreshed if needed.
56
+ *
57
+ * @returns A Promise that resolves to a Headers object with Authorization and Tenant-Name headers
58
+ *
59
+ * @example
60
+ * ```typescript
61
+ * const client = new CortiClient({ ... });
62
+ * const headers = await client.getAuthHeaders();
63
+ * console.log(headers.get("Authorization")); // "Bearer ..."
64
+ * console.log(headers.get("Tenant-Name")); // "your-tenant"
65
+ * ```
66
+ */
67
+ getAuthHeaders: () => Promise<Headers>;
112
68
  }
113
69
  export {};
@@ -1,7 +1,51 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
36
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
37
+ return new (P || (P = Promise))(function (resolve, reject) {
38
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
39
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
40
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
41
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
42
+ });
43
+ };
2
44
  Object.defineProperty(exports, "__esModule", { value: true });
3
45
  exports.CortiClient = void 0;
4
46
  const Client_js_1 = require("../Client.js");
47
+ const core = __importStar(require("../core/index.js"));
48
+ const CustomAgents_js_1 = require("./agents/CustomAgents.js");
5
49
  const CortiAuth_js_1 = require("./auth/CortiAuth.js");
6
50
  const CustomStream_js_1 = require("./stream/CustomStream.js");
7
51
  const CustomTranscribe_js_1 = require("./transcribe/CustomTranscribe.js");
@@ -15,6 +59,27 @@ class CortiClient extends Client_js_1.CortiClient {
15
59
  const ctx = (0, resolveClientOptions_js_1.resolveClientOptions)(options);
16
60
  const restOptions = Object.assign(Object.assign(Object.assign({}, opts), { tenantName: ctx.tenantName, environment: (0, environment_js_1.getEnvironment)(ctx.environment) }), (ctx.initialTokenResponse != null ? { initialTokenResponse: ctx.initialTokenResponse } : {}));
17
61
  super((0, authToBaseOptions_js_1.authToBaseOptions)(opts.auth, restOptions));
62
+ /**
63
+ * Retrieves authentication headers for API requests.
64
+ *
65
+ * This method returns a Headers object containing the Authorization header with a valid
66
+ * bearer token and the Tenant-Name header. The token is automatically refreshed if needed.
67
+ *
68
+ * @returns A Promise that resolves to a Headers object with Authorization and Tenant-Name headers
69
+ *
70
+ * @example
71
+ * ```typescript
72
+ * const client = new CortiClient({ ... });
73
+ * const headers = await client.getAuthHeaders();
74
+ * console.log(headers.get("Authorization")); // "Bearer ..."
75
+ * console.log(headers.get("Tenant-Name")); // "your-tenant"
76
+ * ```
77
+ */
78
+ this.getAuthHeaders = () => __awaiter(this, void 0, void 0, function* () {
79
+ var _a;
80
+ const req = yield this._options.authProvider.getAuthRequest();
81
+ return new Headers(Object.assign(Object.assign({}, ((_a = req.headers) !== null && _a !== void 0 ? _a : {})), { "Tenant-Name": yield core.Supplier.get(this._options.tenantName) }));
82
+ });
18
83
  (0, withCredentialsConfig_js_1.setDefaultWithCredentials)(options.withCredentials);
19
84
  this._encodeHeadersAsWsProtocols = options.encodeHeadersAsWsProtocols;
20
85
  }
@@ -30,5 +95,9 @@ class CortiClient extends Client_js_1.CortiClient {
30
95
  var _a;
31
96
  return ((_a = this._transcribe) !== null && _a !== void 0 ? _a : (this._transcribe = new CustomTranscribe_js_1.CustomTranscribe(Object.assign(Object.assign({}, this._options), { encodeHeadersAsWsProtocols: this._encodeHeadersAsWsProtocols }))));
32
97
  }
98
+ get agents() {
99
+ var _a;
100
+ return ((_a = this._agents) !== null && _a !== void 0 ? _a : (this._agents = new CustomAgents_js_1.CustomAgents(this._options)));
101
+ }
33
102
  }
34
103
  exports.CortiClient = CortiClient;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * This file is the custom implementation of the Agents client (src/api/resources/agents/client/Client.ts)
3
+ *
4
+ * It extends the auto-generated Agents class and adds custom helper methods.
5
+ *
6
+ * All the patches marked with `// Patch: ...` comments.
7
+ */
8
+ import { AgentsClient } from "../../api/resources/agents/client/Client.js";
9
+ export declare class CustomAgents extends AgentsClient {
10
+ /**
11
+ * Returns the URL for the agent card JSON file.
12
+ *
13
+ * @param {string} agentId - The ID of the agent
14
+ * @returns {Promise<URL>} A Promise that resolves to the URL for the agent card
15
+ *
16
+ * @example
17
+ * const url = await client.agents.getAgentCardUrl("agent-123");
18
+ */
19
+ getCardUrl: (agentId: string) => Promise<URL>;
20
+ }
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+ /**
3
+ * This file is the custom implementation of the Agents client (src/api/resources/agents/client/Client.ts)
4
+ *
5
+ * It extends the auto-generated Agents class and adds custom helper methods.
6
+ *
7
+ * All the patches marked with `// Patch: ...` comments.
8
+ */
9
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ var desc = Object.getOwnPropertyDescriptor(m, k);
12
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
13
+ desc = { enumerable: true, get: function() { return m[k]; } };
14
+ }
15
+ Object.defineProperty(o, k2, desc);
16
+ }) : (function(o, m, k, k2) {
17
+ if (k2 === undefined) k2 = k;
18
+ o[k2] = m[k];
19
+ }));
20
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
21
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
22
+ }) : function(o, v) {
23
+ o["default"] = v;
24
+ });
25
+ var __importStar = (this && this.__importStar) || (function () {
26
+ var ownKeys = function(o) {
27
+ ownKeys = Object.getOwnPropertyNames || function (o) {
28
+ var ar = [];
29
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
30
+ return ar;
31
+ };
32
+ return ownKeys(o);
33
+ };
34
+ return function (mod) {
35
+ if (mod && mod.__esModule) return mod;
36
+ var result = {};
37
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
38
+ __setModuleDefault(result, mod);
39
+ return result;
40
+ };
41
+ })();
42
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
43
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
44
+ return new (P || (P = Promise))(function (resolve, reject) {
45
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
46
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
47
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
48
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
49
+ });
50
+ };
51
+ Object.defineProperty(exports, "__esModule", { value: true });
52
+ exports.CustomAgents = void 0;
53
+ const Client_js_1 = require("../../api/resources/agents/client/Client.js");
54
+ const core = __importStar(require("../../core/index.js"));
55
+ class CustomAgents extends Client_js_1.AgentsClient {
56
+ constructor() {
57
+ super(...arguments);
58
+ /**
59
+ * Returns the URL for the agent card JSON file.
60
+ *
61
+ * @param {string} agentId - The ID of the agent
62
+ * @returns {Promise<URL>} A Promise that resolves to the URL for the agent card
63
+ *
64
+ * @example
65
+ * const url = await client.agents.getAgentCardUrl("agent-123");
66
+ */
67
+ this.getCardUrl = (agentId) => __awaiter(this, void 0, void 0, function* () {
68
+ const encodedAgentId = encodeURIComponent(agentId);
69
+ return new URL(`/agents/${encodedAgentId}/agent-card.json`, (yield core.Supplier.get(this._options.environment)).agents);
70
+ });
71
+ }
72
+ }
73
+ exports.CustomAgents = CustomAgents;
@@ -45,6 +45,32 @@ export declare namespace CortiAuth {
45
45
  codeVerifier?: string;
46
46
  scopes?: string[];
47
47
  }
48
+ /**
49
+ * Auth shapes used by `CortiClient` when passing `auth: ...`.
50
+ */
51
+ type AuthClientCredentials = {
52
+ clientId: string;
53
+ clientSecret: string;
54
+ };
55
+ type AuthRopc = Omit<GetRopcFlowTokenRequest, "scopes">;
56
+ type AuthCode = Omit<GetCodeFlowTokenRequest, "scopes">;
57
+ type AuthPkce = Omit<GetPkceFlowTokenRequest, "scopes">;
58
+ type AuthTokenDerivable = {
59
+ accessToken: string;
60
+ refreshAccessToken?: OAuthAuthProvider.RefreshAccessTokenFunction;
61
+ expiresIn?: number;
62
+ refreshToken?: string;
63
+ refreshExpiresIn?: number;
64
+ clientId?: string;
65
+ } | {
66
+ refreshAccessToken: OAuthAuthProvider.RefreshAccessTokenFunction;
67
+ accessToken?: string;
68
+ expiresIn?: number;
69
+ refreshToken?: string;
70
+ refreshExpiresIn?: number;
71
+ clientId?: string;
72
+ };
73
+ type AuthServer = AuthClientCredentials | AuthRopc | AuthCode | AuthPkce;
48
74
  /** Parameters for authorizeURL — builds the Keycloak authorization endpoint URL. */
49
75
  interface AuthorizationCodeClient {
50
76
  clientId: string;
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.0.0-rc.4";
1
+ export declare const SDK_VERSION = "1.0.0-rc.6";
@@ -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 = "1.0.0-rc.4";
4
+ exports.SDK_VERSION = "1.0.0-rc.6";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "@corti/sdk",
9
- "X-Fern-SDK-Version": "1.0.0-rc.4",
10
- "User-Agent": "@corti/sdk/1.0.0-rc.4",
9
+ "X-Fern-SDK-Version": "1.0.0-rc.6",
10
+ "User-Agent": "@corti/sdk/1.0.0-rc.6",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  "Tenant-Name": options === null || options === void 0 ? void 0 : options.tenantName,
@@ -1,25 +1,10 @@
1
- import type { OAuthAuthProvider } from "../auth/OAuthAuthProvider.mjs";
2
1
  import { CortiClient as BaseCortiClient } from "../Client.mjs";
3
2
  import type * as environments from "../environments.mjs";
3
+ import { CustomAgents } from "./agents/CustomAgents.mjs";
4
4
  import { CortiAuth } from "./auth/CortiAuth.mjs";
5
5
  import { CustomStream } from "./stream/CustomStream.mjs";
6
6
  import { CustomTranscribe } from "./transcribe/CustomTranscribe.mjs";
7
7
  import { type Environment } from "./utils/environment.mjs";
8
- type TokenDerivableAuth = {
9
- accessToken: string;
10
- refreshAccessToken?: OAuthAuthProvider.RefreshAccessTokenFunction;
11
- expiresIn?: number;
12
- refreshToken?: string;
13
- refreshExpiresIn?: number;
14
- clientId?: string;
15
- } | {
16
- refreshAccessToken: OAuthAuthProvider.RefreshAccessTokenFunction;
17
- accessToken?: string;
18
- expiresIn?: number;
19
- refreshToken?: string;
20
- refreshExpiresIn?: number;
21
- clientId?: string;
22
- };
23
8
  type OptionsBase = Omit<BaseCortiClient.Options, "clientId" | "clientSecret" | "token" | "environment" | "tenantName" | "baseUrl"> & {
24
9
  withCredentials?: boolean;
25
10
  /**
@@ -30,71 +15,23 @@ type OptionsBase = Omit<BaseCortiClient.Options, "clientId" | "clientSecret" | "
30
15
  encodeHeadersAsWsProtocols?: boolean;
31
16
  };
32
17
  export declare namespace CortiClient {
33
- type Auth = {
34
- clientId: string;
35
- clientSecret: string;
36
- } | {
37
- accessToken: string;
38
- refreshAccessToken?: OAuthAuthProvider.RefreshAccessTokenFunction;
39
- expiresIn?: number;
40
- refreshToken?: string;
41
- refreshExpiresIn?: number;
42
- clientId?: string;
43
- } | {
44
- clientId: string;
45
- username: string;
46
- password: string;
47
- } | {
48
- clientId: string;
49
- clientSecret: string;
50
- code: string;
51
- redirectUri: string;
52
- } | {
53
- clientId: string;
54
- code: string;
55
- redirectUri: string;
56
- codeVerifier?: string;
57
- } | {
58
- refreshAccessToken: OAuthAuthProvider.RefreshAccessTokenFunction;
59
- accessToken?: string;
60
- expiresIn?: number;
61
- refreshToken?: string;
62
- refreshExpiresIn?: number;
63
- clientId?: string;
64
- };
18
+ type Auth = CortiAuth.AuthServer | CortiAuth.AuthTokenDerivable;
65
19
  type Options = (OptionsBase & {
66
- auth: {
67
- clientId: string;
68
- clientSecret: string;
69
- } | {
70
- clientId: string;
71
- username: string;
72
- password: string;
73
- } | {
74
- clientId: string;
75
- clientSecret: string;
76
- code: string;
77
- redirectUri: string;
78
- } | {
79
- clientId: string;
80
- code: string;
81
- redirectUri: string;
82
- codeVerifier?: string;
83
- };
20
+ auth: CortiAuth.AuthServer;
84
21
  tenantName: string;
85
22
  environment: Environment;
86
23
  }) | (OptionsBase & {
87
- auth: TokenDerivableAuth;
24
+ auth: CortiAuth.AuthTokenDerivable;
88
25
  tenantName?: string;
89
26
  environment?: Environment;
90
27
  }) | (OptionsBase & {
91
28
  baseUrl: string;
92
- auth?: CortiClient.Auth;
29
+ auth?: Auth;
93
30
  tenantName?: string;
94
31
  environment?: Environment;
95
32
  }) | (OptionsBase & {
96
33
  environment: environments.CortiEnvironmentUrls;
97
- auth?: CortiClient.Auth;
34
+ auth?: Auth;
98
35
  tenantName?: string;
99
36
  });
100
37
  interface RequestOptions extends BaseCortiClient.RequestOptions {
@@ -104,10 +41,29 @@ export declare class CortiClient extends BaseCortiClient {
104
41
  protected _auth: CortiAuth | undefined;
105
42
  protected _stream: CustomStream | undefined;
106
43
  protected _transcribe: CustomTranscribe | undefined;
44
+ protected _agents: CustomAgents | undefined;
107
45
  private readonly _encodeHeadersAsWsProtocols;
108
46
  constructor(options: CortiClient.Options);
109
47
  get auth(): CortiAuth;
110
48
  get stream(): CustomStream;
111
49
  get transcribe(): CustomTranscribe;
50
+ get agents(): CustomAgents;
51
+ /**
52
+ * Retrieves authentication headers for API requests.
53
+ *
54
+ * This method returns a Headers object containing the Authorization header with a valid
55
+ * bearer token and the Tenant-Name header. The token is automatically refreshed if needed.
56
+ *
57
+ * @returns A Promise that resolves to a Headers object with Authorization and Tenant-Name headers
58
+ *
59
+ * @example
60
+ * ```typescript
61
+ * const client = new CortiClient({ ... });
62
+ * const headers = await client.getAuthHeaders();
63
+ * console.log(headers.get("Authorization")); // "Bearer ..."
64
+ * console.log(headers.get("Tenant-Name")); // "your-tenant"
65
+ * ```
66
+ */
67
+ getAuthHeaders: () => Promise<Headers>;
112
68
  }
113
69
  export {};
@@ -1,4 +1,15 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
1
10
  import { CortiClient as BaseCortiClient } from "../Client.mjs";
11
+ import * as core from "../core/index.mjs";
12
+ import { CustomAgents } from "./agents/CustomAgents.mjs";
2
13
  import { CortiAuth } from "./auth/CortiAuth.mjs";
3
14
  import { CustomStream } from "./stream/CustomStream.mjs";
4
15
  import { CustomTranscribe } from "./transcribe/CustomTranscribe.mjs";
@@ -12,6 +23,27 @@ export class CortiClient extends BaseCortiClient {
12
23
  const ctx = resolveClientOptions(options);
13
24
  const restOptions = Object.assign(Object.assign(Object.assign({}, opts), { tenantName: ctx.tenantName, environment: getEnvironment(ctx.environment) }), (ctx.initialTokenResponse != null ? { initialTokenResponse: ctx.initialTokenResponse } : {}));
14
25
  super(authToBaseOptions(opts.auth, restOptions));
26
+ /**
27
+ * Retrieves authentication headers for API requests.
28
+ *
29
+ * This method returns a Headers object containing the Authorization header with a valid
30
+ * bearer token and the Tenant-Name header. The token is automatically refreshed if needed.
31
+ *
32
+ * @returns A Promise that resolves to a Headers object with Authorization and Tenant-Name headers
33
+ *
34
+ * @example
35
+ * ```typescript
36
+ * const client = new CortiClient({ ... });
37
+ * const headers = await client.getAuthHeaders();
38
+ * console.log(headers.get("Authorization")); // "Bearer ..."
39
+ * console.log(headers.get("Tenant-Name")); // "your-tenant"
40
+ * ```
41
+ */
42
+ this.getAuthHeaders = () => __awaiter(this, void 0, void 0, function* () {
43
+ var _a;
44
+ const req = yield this._options.authProvider.getAuthRequest();
45
+ return new Headers(Object.assign(Object.assign({}, ((_a = req.headers) !== null && _a !== void 0 ? _a : {})), { "Tenant-Name": yield core.Supplier.get(this._options.tenantName) }));
46
+ });
15
47
  setDefaultWithCredentials(options.withCredentials);
16
48
  this._encodeHeadersAsWsProtocols = options.encodeHeadersAsWsProtocols;
17
49
  }
@@ -27,4 +59,8 @@ export class CortiClient extends BaseCortiClient {
27
59
  var _a;
28
60
  return ((_a = this._transcribe) !== null && _a !== void 0 ? _a : (this._transcribe = new CustomTranscribe(Object.assign(Object.assign({}, this._options), { encodeHeadersAsWsProtocols: this._encodeHeadersAsWsProtocols }))));
29
61
  }
62
+ get agents() {
63
+ var _a;
64
+ return ((_a = this._agents) !== null && _a !== void 0 ? _a : (this._agents = new CustomAgents(this._options)));
65
+ }
30
66
  }
@@ -0,0 +1,20 @@
1
+ /**
2
+ * This file is the custom implementation of the Agents client (src/api/resources/agents/client/Client.ts)
3
+ *
4
+ * It extends the auto-generated Agents class and adds custom helper methods.
5
+ *
6
+ * All the patches marked with `// Patch: ...` comments.
7
+ */
8
+ import { AgentsClient } from "../../api/resources/agents/client/Client.mjs";
9
+ export declare class CustomAgents extends AgentsClient {
10
+ /**
11
+ * Returns the URL for the agent card JSON file.
12
+ *
13
+ * @param {string} agentId - The ID of the agent
14
+ * @returns {Promise<URL>} A Promise that resolves to the URL for the agent card
15
+ *
16
+ * @example
17
+ * const url = await client.agents.getAgentCardUrl("agent-123");
18
+ */
19
+ getCardUrl: (agentId: string) => Promise<URL>;
20
+ }
@@ -0,0 +1,36 @@
1
+ /**
2
+ * This file is the custom implementation of the Agents client (src/api/resources/agents/client/Client.ts)
3
+ *
4
+ * It extends the auto-generated Agents class and adds custom helper methods.
5
+ *
6
+ * All the patches marked with `// Patch: ...` comments.
7
+ */
8
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
9
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
10
+ return new (P || (P = Promise))(function (resolve, reject) {
11
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
12
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
13
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
14
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
15
+ });
16
+ };
17
+ import { AgentsClient } from "../../api/resources/agents/client/Client.mjs";
18
+ import * as core from "../../core/index.mjs";
19
+ export class CustomAgents extends AgentsClient {
20
+ constructor() {
21
+ super(...arguments);
22
+ /**
23
+ * Returns the URL for the agent card JSON file.
24
+ *
25
+ * @param {string} agentId - The ID of the agent
26
+ * @returns {Promise<URL>} A Promise that resolves to the URL for the agent card
27
+ *
28
+ * @example
29
+ * const url = await client.agents.getAgentCardUrl("agent-123");
30
+ */
31
+ this.getCardUrl = (agentId) => __awaiter(this, void 0, void 0, function* () {
32
+ const encodedAgentId = encodeURIComponent(agentId);
33
+ return new URL(`/agents/${encodedAgentId}/agent-card.json`, (yield core.Supplier.get(this._options.environment)).agents);
34
+ });
35
+ }
36
+ }
@@ -45,6 +45,32 @@ export declare namespace CortiAuth {
45
45
  codeVerifier?: string;
46
46
  scopes?: string[];
47
47
  }
48
+ /**
49
+ * Auth shapes used by `CortiClient` when passing `auth: ...`.
50
+ */
51
+ type AuthClientCredentials = {
52
+ clientId: string;
53
+ clientSecret: string;
54
+ };
55
+ type AuthRopc = Omit<GetRopcFlowTokenRequest, "scopes">;
56
+ type AuthCode = Omit<GetCodeFlowTokenRequest, "scopes">;
57
+ type AuthPkce = Omit<GetPkceFlowTokenRequest, "scopes">;
58
+ type AuthTokenDerivable = {
59
+ accessToken: string;
60
+ refreshAccessToken?: OAuthAuthProvider.RefreshAccessTokenFunction;
61
+ expiresIn?: number;
62
+ refreshToken?: string;
63
+ refreshExpiresIn?: number;
64
+ clientId?: string;
65
+ } | {
66
+ refreshAccessToken: OAuthAuthProvider.RefreshAccessTokenFunction;
67
+ accessToken?: string;
68
+ expiresIn?: number;
69
+ refreshToken?: string;
70
+ refreshExpiresIn?: number;
71
+ clientId?: string;
72
+ };
73
+ type AuthServer = AuthClientCredentials | AuthRopc | AuthCode | AuthPkce;
48
74
  /** Parameters for authorizeURL — builds the Keycloak authorization endpoint URL. */
49
75
  interface AuthorizationCodeClient {
50
76
  clientId: string;
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.0.0-rc.4";
1
+ export declare const SDK_VERSION = "1.0.0-rc.6";
@@ -1 +1 @@
1
- export const SDK_VERSION = "1.0.0-rc.4";
1
+ export const SDK_VERSION = "1.0.0-rc.6";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corti/sdk",
3
- "version": "1.0.0-rc.4",
3
+ "version": "1.0.0-rc.6",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",