@meetkai/mka1 0.53.5 → 0.53.7

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.
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
31
31
  export declare const SDK_METADATA: {
32
32
  readonly language: "typescript";
33
33
  readonly openapiDocVersion: "1.1.0";
34
- readonly sdkVersion: "0.53.5";
35
- readonly genVersion: "2.926.8";
36
- readonly userAgent: "speakeasy-sdk/typescript 0.53.5 2.926.8 1.1.0 @meetkai/mka1";
34
+ readonly sdkVersion: "0.53.7";
35
+ readonly genVersion: "2.927.0";
36
+ readonly userAgent: "speakeasy-sdk/typescript 0.53.7 2.927.0 1.1.0 @meetkai/mka1";
37
37
  };
38
38
  //# sourceMappingURL=config.d.ts.map
@@ -35,8 +35,8 @@ function serverURLFromOptions(options) {
35
35
  exports.SDK_METADATA = {
36
36
  language: "typescript",
37
37
  openapiDocVersion: "1.1.0",
38
- sdkVersion: "0.53.5",
39
- genVersion: "2.926.8",
40
- userAgent: "speakeasy-sdk/typescript 0.53.5 2.926.8 1.1.0 @meetkai/mka1",
38
+ sdkVersion: "0.53.7",
39
+ genVersion: "2.927.0",
40
+ userAgent: "speakeasy-sdk/typescript 0.53.7 2.927.0 1.1.0 @meetkai/mka1",
41
41
  };
42
42
  //# sourceMappingURL=config.js.map
@@ -22,7 +22,7 @@ const routes = (0, core_1.buildRouteMap)({
22
22
  exports.app = (0, core_1.buildApplication)(routes, {
23
23
  name: "mcp",
24
24
  versionInfo: {
25
- currentVersion: "0.53.5",
25
+ currentVersion: "0.53.7",
26
26
  },
27
27
  });
28
28
  (0, core_1.run)(exports.app, node_process_1.default.argv.slice(2), (0, cli_js_1.buildContext)(node_process_1.default));
@@ -335,7 +335,7 @@ const usageSandbox_js_1 = require("./tools/usageSandbox.js");
335
335
  function createMCPServer(deps) {
336
336
  const server = new mcp_js_1.McpServer({
337
337
  name: "SDK",
338
- version: "0.53.5",
338
+ version: "0.53.7",
339
339
  });
340
340
  const client = new core_js_1.SDKCore({
341
341
  bearerAuth: deps.bearerAuth,
@@ -15,7 +15,7 @@ export type ExchangeApiKeyTokenRequestBody = {
15
15
  */
16
16
  expiresIn?: number | undefined;
17
17
  /**
18
- * Optional subset of API key permissions to embed in the token. If omitted, all API key permissions are used.
18
+ * Optional subset of the API key's scopes to embed in the token (e.g. read:responses). The exchanged token is attenuated to this set at the gateway perimeter. If omitted, all of the key's scopes are embedded (no attenuation).
19
19
  */
20
20
  permissions?: Array<string> | undefined;
21
21
  };
@@ -15,7 +15,7 @@ export type GetJwtFromKeyRequestBody = {
15
15
  */
16
16
  expiresIn?: number | undefined;
17
17
  /**
18
- * Optional subset of API key permissions to embed in the token. If omitted, all API key permissions are used.
18
+ * Optional subset of the API key's scopes to embed in the token (e.g. read:responses). The exchanged token is attenuated to this set at the gateway perimeter. If omitted, all of the key's scopes are embedded (no attenuation).
19
19
  */
20
20
  permissions?: Array<string> | undefined;
21
21
  };
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
31
31
  export declare const SDK_METADATA: {
32
32
  readonly language: "typescript";
33
33
  readonly openapiDocVersion: "1.1.0";
34
- readonly sdkVersion: "0.53.5";
35
- readonly genVersion: "2.926.8";
36
- readonly userAgent: "speakeasy-sdk/typescript 0.53.5 2.926.8 1.1.0 @meetkai/mka1";
34
+ readonly sdkVersion: "0.53.7";
35
+ readonly genVersion: "2.927.0";
36
+ readonly userAgent: "speakeasy-sdk/typescript 0.53.7 2.927.0 1.1.0 @meetkai/mka1";
37
37
  };
38
38
  //# sourceMappingURL=config.d.ts.map
@@ -31,8 +31,8 @@ export function serverURLFromOptions(options) {
31
31
  export const SDK_METADATA = {
32
32
  language: "typescript",
33
33
  openapiDocVersion: "1.1.0",
34
- sdkVersion: "0.53.5",
35
- genVersion: "2.926.8",
36
- userAgent: "speakeasy-sdk/typescript 0.53.5 2.926.8 1.1.0 @meetkai/mka1",
34
+ sdkVersion: "0.53.7",
35
+ genVersion: "2.927.0",
36
+ userAgent: "speakeasy-sdk/typescript 0.53.7 2.927.0 1.1.0 @meetkai/mka1",
37
37
  };
38
38
  //# sourceMappingURL=config.js.map
@@ -16,7 +16,7 @@ const routes = buildRouteMap({
16
16
  export const app = buildApplication(routes, {
17
17
  name: "mcp",
18
18
  versionInfo: {
19
- currentVersion: "0.53.5",
19
+ currentVersion: "0.53.7",
20
20
  },
21
21
  });
22
22
  run(app, process.argv.slice(2), buildContext(process));
@@ -332,7 +332,7 @@ import { tool$usageSandbox } from "./tools/usageSandbox.js";
332
332
  export function createMCPServer(deps) {
333
333
  const server = new McpServer({
334
334
  name: "SDK",
335
- version: "0.53.5",
335
+ version: "0.53.7",
336
336
  });
337
337
  const client = new SDKCore({
338
338
  bearerAuth: deps.bearerAuth,
@@ -15,7 +15,7 @@ export type ExchangeApiKeyTokenRequestBody = {
15
15
  */
16
16
  expiresIn?: number | undefined;
17
17
  /**
18
- * Optional subset of API key permissions to embed in the token. If omitted, all API key permissions are used.
18
+ * Optional subset of the API key's scopes to embed in the token (e.g. read:responses). The exchanged token is attenuated to this set at the gateway perimeter. If omitted, all of the key's scopes are embedded (no attenuation).
19
19
  */
20
20
  permissions?: Array<string> | undefined;
21
21
  };
@@ -15,7 +15,7 @@ export type GetJwtFromKeyRequestBody = {
15
15
  */
16
16
  expiresIn?: number | undefined;
17
17
  /**
18
- * Optional subset of API key permissions to embed in the token. If omitted, all API key permissions are used.
18
+ * Optional subset of the API key's scopes to embed in the token (e.g. read:responses). The exchanged token is attenuated to this set at the gateway perimeter. If omitted, all of the key's scopes are embedded (no attenuation).
19
19
  */
20
20
  permissions?: Array<string> | undefined;
21
21
  };
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@meetkai/mka1",
5
- "version": "0.53.5",
5
+ "version": "0.53.7",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetkai/mka1",
3
- "version": "0.53.5",
3
+ "version": "0.53.7",
4
4
  "author": "Daniel Wilder <dauncy@gmail.com>",
5
5
  "homepage": "https://docs.mka1.com",
6
6
  "publishConfig": {
package/src/lib/config.ts CHANGED
@@ -65,7 +65,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
65
65
  export const SDK_METADATA = {
66
66
  language: "typescript",
67
67
  openapiDocVersion: "1.1.0",
68
- sdkVersion: "0.53.5",
69
- genVersion: "2.926.8",
70
- userAgent: "speakeasy-sdk/typescript 0.53.5 2.926.8 1.1.0 @meetkai/mka1",
68
+ sdkVersion: "0.53.7",
69
+ genVersion: "2.927.0",
70
+ userAgent: "speakeasy-sdk/typescript 0.53.7 2.927.0 1.1.0 @meetkai/mka1",
71
71
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "0.53.5",
22
+ currentVersion: "0.53.7",
23
23
  },
24
24
  });
25
25
 
@@ -347,7 +347,7 @@ export function createMCPServer(deps: {
347
347
  }) {
348
348
  const server = new McpServer({
349
349
  name: "SDK",
350
- version: "0.53.5",
350
+ version: "0.53.7",
351
351
  });
352
352
 
353
353
  const client = new SDKCore({
@@ -22,7 +22,7 @@ export type ExchangeApiKeyTokenRequestBody = {
22
22
  */
23
23
  expiresIn?: number | undefined;
24
24
  /**
25
- * Optional subset of API key permissions to embed in the token. If omitted, all API key permissions are used.
25
+ * Optional subset of the API key's scopes to embed in the token (e.g. read:responses). The exchanged token is attenuated to this set at the gateway perimeter. If omitted, all of the key's scopes are embedded (no attenuation).
26
26
  */
27
27
  permissions?: Array<string> | undefined;
28
28
  };
@@ -22,7 +22,7 @@ export type GetJwtFromKeyRequestBody = {
22
22
  */
23
23
  expiresIn?: number | undefined;
24
24
  /**
25
- * Optional subset of API key permissions to embed in the token. If omitted, all API key permissions are used.
25
+ * Optional subset of the API key's scopes to embed in the token (e.g. read:responses). The exchanged token is attenuated to this set at the gateway perimeter. If omitted, all of the key's scopes are embedded (no attenuation).
26
26
  */
27
27
  permissions?: Array<string> | undefined;
28
28
  };