@meetkai/mka1 0.49.2 → 0.49.3

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.49.2";
34
+ readonly sdkVersion: "0.49.3";
35
35
  readonly genVersion: "2.918.3";
36
- readonly userAgent: "speakeasy-sdk/typescript 0.49.2 2.918.3 1.1.0 @meetkai/mka1";
36
+ readonly userAgent: "speakeasy-sdk/typescript 0.49.3 2.918.3 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.49.2",
38
+ sdkVersion: "0.49.3",
39
39
  genVersion: "2.918.3",
40
- userAgent: "speakeasy-sdk/typescript 0.49.2 2.918.3 1.1.0 @meetkai/mka1",
40
+ userAgent: "speakeasy-sdk/typescript 0.49.3 2.918.3 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.49.2",
25
+ currentVersion: "0.49.3",
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));
@@ -333,7 +333,7 @@ const usageSandbox_js_1 = require("./tools/usageSandbox.js");
333
333
  function createMCPServer(deps) {
334
334
  const server = new mcp_js_1.McpServer({
335
335
  name: "SDK",
336
- version: "0.49.2",
336
+ version: "0.49.3",
337
337
  });
338
338
  const client = new core_js_1.SDKCore({
339
339
  bearerAuth: deps.bearerAuth,
@@ -6,7 +6,7 @@ import { FileWithMetadata, FileWithMetadata$Outbound } from "./filewithmetadata.
6
6
  import { StaticChunkingStrategy, StaticChunkingStrategy$Outbound } from "./staticchunkingstrategy.js";
7
7
  export type CreateVectorStoreFileBatchRequestAttributes = string | boolean | number;
8
8
  /**
9
- * Global chunking strategy to apply to all files if using 'file_ids'. Ignored if using 'files'.
9
+ * Batch-wide default chunking strategy, applied to every file that does not carry its own (a 'files' entry's chunking_strategy overrides this).
10
10
  */
11
11
  export type CreateVectorStoreFileBatchRequestChunkingStrategy = AutoChunkingStrategy | StaticChunkingStrategy;
12
12
  /**
@@ -18,17 +18,17 @@ export type CreateVectorStoreFileBatchRequest = {
18
18
  */
19
19
  fileIds?: Array<string> | undefined;
20
20
  /**
21
- * A list of objects that each include a file_id plus optional attributes or chunking_strategy. Use this when you need to override metadata for specific files. The global attributes or chunking_strategy will be ignored. Mutually exclusive with 'file_ids'. At most 500 per batch.
21
+ * A list of objects that each include a file_id plus optional attributes or chunking_strategy. Use this when you need to override metadata for specific files. Entries without their own attributes or chunking_strategy fall back to the request-level values. Mutually exclusive with 'file_ids'. At most 500 per batch.
22
22
  */
23
23
  files?: Array<FileWithMetadata> | undefined;
24
24
  /**
25
- * Global attributes to apply to all files if using 'file_ids'. Ignored if using 'files'.
25
+ * Batch-wide default attributes, applied to every file that does not carry its own (a 'files' entry's attributes override this).
26
26
  */
27
27
  attributes?: {
28
28
  [k: string]: string | boolean | number;
29
29
  } | undefined;
30
30
  /**
31
- * Global chunking strategy to apply to all files if using 'file_ids'. Ignored if using 'files'.
31
+ * Batch-wide default chunking strategy, applied to every file that does not carry its own (a 'files' entry's chunking_strategy overrides this).
32
32
  */
33
33
  chunkingStrategy?: AutoChunkingStrategy | StaticChunkingStrategy | undefined;
34
34
  };
@@ -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.49.2";
34
+ readonly sdkVersion: "0.49.3";
35
35
  readonly genVersion: "2.918.3";
36
- readonly userAgent: "speakeasy-sdk/typescript 0.49.2 2.918.3 1.1.0 @meetkai/mka1";
36
+ readonly userAgent: "speakeasy-sdk/typescript 0.49.3 2.918.3 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.49.2",
34
+ sdkVersion: "0.49.3",
35
35
  genVersion: "2.918.3",
36
- userAgent: "speakeasy-sdk/typescript 0.49.2 2.918.3 1.1.0 @meetkai/mka1",
36
+ userAgent: "speakeasy-sdk/typescript 0.49.3 2.918.3 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.49.2",
19
+ currentVersion: "0.49.3",
20
20
  },
21
21
  });
22
22
  run(app, process.argv.slice(2), buildContext(process));
@@ -330,7 +330,7 @@ import { tool$usageSandbox } from "./tools/usageSandbox.js";
330
330
  export function createMCPServer(deps) {
331
331
  const server = new McpServer({
332
332
  name: "SDK",
333
- version: "0.49.2",
333
+ version: "0.49.3",
334
334
  });
335
335
  const client = new SDKCore({
336
336
  bearerAuth: deps.bearerAuth,
@@ -6,7 +6,7 @@ import { FileWithMetadata, FileWithMetadata$Outbound } from "./filewithmetadata.
6
6
  import { StaticChunkingStrategy, StaticChunkingStrategy$Outbound } from "./staticchunkingstrategy.js";
7
7
  export type CreateVectorStoreFileBatchRequestAttributes = string | boolean | number;
8
8
  /**
9
- * Global chunking strategy to apply to all files if using 'file_ids'. Ignored if using 'files'.
9
+ * Batch-wide default chunking strategy, applied to every file that does not carry its own (a 'files' entry's chunking_strategy overrides this).
10
10
  */
11
11
  export type CreateVectorStoreFileBatchRequestChunkingStrategy = AutoChunkingStrategy | StaticChunkingStrategy;
12
12
  /**
@@ -18,17 +18,17 @@ export type CreateVectorStoreFileBatchRequest = {
18
18
  */
19
19
  fileIds?: Array<string> | undefined;
20
20
  /**
21
- * A list of objects that each include a file_id plus optional attributes or chunking_strategy. Use this when you need to override metadata for specific files. The global attributes or chunking_strategy will be ignored. Mutually exclusive with 'file_ids'. At most 500 per batch.
21
+ * A list of objects that each include a file_id plus optional attributes or chunking_strategy. Use this when you need to override metadata for specific files. Entries without their own attributes or chunking_strategy fall back to the request-level values. Mutually exclusive with 'file_ids'. At most 500 per batch.
22
22
  */
23
23
  files?: Array<FileWithMetadata> | undefined;
24
24
  /**
25
- * Global attributes to apply to all files if using 'file_ids'. Ignored if using 'files'.
25
+ * Batch-wide default attributes, applied to every file that does not carry its own (a 'files' entry's attributes override this).
26
26
  */
27
27
  attributes?: {
28
28
  [k: string]: string | boolean | number;
29
29
  } | undefined;
30
30
  /**
31
- * Global chunking strategy to apply to all files if using 'file_ids'. Ignored if using 'files'.
31
+ * Batch-wide default chunking strategy, applied to every file that does not carry its own (a 'files' entry's chunking_strategy overrides this).
32
32
  */
33
33
  chunkingStrategy?: AutoChunkingStrategy | StaticChunkingStrategy | undefined;
34
34
  };
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@meetkai/mka1",
5
- "version": "0.49.2",
5
+ "version": "0.49.3",
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.49.2",
3
+ "version": "0.49.3",
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.49.2",
68
+ sdkVersion: "0.49.3",
69
69
  genVersion: "2.918.3",
70
- userAgent: "speakeasy-sdk/typescript 0.49.2 2.918.3 1.1.0 @meetkai/mka1",
70
+ userAgent: "speakeasy-sdk/typescript 0.49.3 2.918.3 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.49.2",
22
+ currentVersion: "0.49.3",
23
23
  },
24
24
  });
25
25
 
@@ -345,7 +345,7 @@ export function createMCPServer(deps: {
345
345
  }) {
346
346
  const server = new McpServer({
347
347
  name: "SDK",
348
- version: "0.49.2",
348
+ version: "0.49.3",
349
349
  });
350
350
 
351
351
  const client = new SDKCore({
@@ -32,7 +32,7 @@ export type CreateVectorStoreFileBatchRequestAttributes =
32
32
  | number;
33
33
 
34
34
  /**
35
- * Global chunking strategy to apply to all files if using 'file_ids'. Ignored if using 'files'.
35
+ * Batch-wide default chunking strategy, applied to every file that does not carry its own (a 'files' entry's chunking_strategy overrides this).
36
36
  */
37
37
  export type CreateVectorStoreFileBatchRequestChunkingStrategy =
38
38
  | AutoChunkingStrategy
@@ -47,15 +47,15 @@ export type CreateVectorStoreFileBatchRequest = {
47
47
  */
48
48
  fileIds?: Array<string> | undefined;
49
49
  /**
50
- * A list of objects that each include a file_id plus optional attributes or chunking_strategy. Use this when you need to override metadata for specific files. The global attributes or chunking_strategy will be ignored. Mutually exclusive with 'file_ids'. At most 500 per batch.
50
+ * A list of objects that each include a file_id plus optional attributes or chunking_strategy. Use this when you need to override metadata for specific files. Entries without their own attributes or chunking_strategy fall back to the request-level values. Mutually exclusive with 'file_ids'. At most 500 per batch.
51
51
  */
52
52
  files?: Array<FileWithMetadata> | undefined;
53
53
  /**
54
- * Global attributes to apply to all files if using 'file_ids'. Ignored if using 'files'.
54
+ * Batch-wide default attributes, applied to every file that does not carry its own (a 'files' entry's attributes override this).
55
55
  */
56
56
  attributes?: { [k: string]: string | boolean | number } | undefined;
57
57
  /**
58
- * Global chunking strategy to apply to all files if using 'file_ids'. Ignored if using 'files'.
58
+ * Batch-wide default chunking strategy, applied to every file that does not carry its own (a 'files' entry's chunking_strategy overrides this).
59
59
  */
60
60
  chunkingStrategy?: AutoChunkingStrategy | StaticChunkingStrategy | undefined;
61
61
  };