@toolsdk.ai/registry 1.0.21 → 1.0.23

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 (2) hide show
  1. package/package.json +1 -1
  2. package/types.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "exports": {
6
6
  "./*": "./*",
package/types.ts CHANGED
@@ -1,6 +1,7 @@
1
1
 
2
2
  import { z } from 'zod'
3
- import type { CategoryConfigSchema, PackageConfigSchema } from './schema';
3
+ import type { CategoryConfigSchema, PackageConfigSchema, MCPServerPackageConfigSchema } from './schema';
4
4
 
5
+ export type MCPServerPackageConfig= z.infer<typeof MCPServerPackageConfigSchema>;
5
6
  export type PackageConfig = z.infer<typeof PackageConfigSchema>;
6
7
  export type CategoryConfig = z.infer<typeof CategoryConfigSchema>;