@kb-labs/mind-contracts 1.5.0 → 2.9.0

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.
@@ -93,4 +93,4 @@ interface PluginContracts {
93
93
 
94
94
  declare const pluginContractsManifest: PluginContracts;
95
95
 
96
- export { type ApiContract as A, type CommandContract as C, type PluginContracts as P, type RestApiContract as R, type SchemaReference as S, type WorkflowContract as W, contractsSchemaId as a, type RestRouteContract as b, contractsVersion as c, type ArtifactKind as d, type ArtifactContractsMap as e, type PluginArtifactContract as f, type ArtifactExample as g, type CommandContractsMap as h, type WorkflowContractsMap as i, type WorkflowStepContract as j, pluginContractsManifest as p };
96
+ export { type ApiContract as A, type CommandContract as C, type PluginArtifactContract as P, type RestApiContract as R, type SchemaReference as S, type WorkflowContract as W, type ArtifactContractsMap as a, type ArtifactExample as b, type ArtifactKind as c, type CommandContractsMap as d, type PluginContracts as e, type RestRouteContract as f, type WorkflowContractsMap as g, type WorkflowStepContract as h, contractsSchemaId as i, contractsVersion as j, pluginContractsManifest as p };
@@ -1 +1 @@
1
- export { p as pluginContractsManifest } from './contract-D8Rjf1rz.js';
1
+ export { p as pluginContractsManifest } from './contract-D29vlhme.js';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { A as ApiContract, e as ArtifactContractsMap, g as ArtifactExample, d as ArtifactKind, C as CommandContract, h as CommandContractsMap, f as PluginArtifactContract, P as PluginContracts, R as RestApiContract, b as RestRouteContract, S as SchemaReference, W as WorkflowContract, i as WorkflowContractsMap, j as WorkflowStepContract, a as contractsSchemaId, c as contractsVersion, p as pluginContractsManifest } from './contract-D8Rjf1rz.js';
1
+ export { A as ApiContract, a as ArtifactContractsMap, b as ArtifactExample, c as ArtifactKind, C as CommandContract, d as CommandContractsMap, P as PluginArtifactContract, e as PluginContracts, R as RestApiContract, f as RestRouteContract, S as SchemaReference, W as WorkflowContract, g as WorkflowContractsMap, h as WorkflowStepContract, i as contractsSchemaId, j as contractsVersion, p as pluginContractsManifest } from './contract-D29vlhme.js';
2
2
  export { MindFeedCommandInputSchema, MindFeedCommandOutputSchema, MindInitCommandInputSchema, MindPackCommandInputSchema, MindPackCommandOutputSchema, MindQueryCommandInputSchema, MindQueryCommandOutputSchema, MindQueryRequestSchema, MindQueryResponseSchema, MindUpdateCommandInputSchema, MindUpdateCommandOutputSchema, MindVerifyCommandInputSchema, MindVerifyCommandOutputSchema, MindVerifyResponseSchema, PluginContractsSchema, apiContractSchema, artifactContractSchema, artifactExampleSchema, artifactsContractMapSchema, commandContractMapSchema, commandContractSchema, parsePluginContracts, pluginContractsSchema, restApiContractSchema, restRouteContractSchema, schemaReferenceSchema, workflowContractMapSchema, workflowContractSchema, workflowStepSchema } from './schema.js';
3
3
  import 'zod';
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kb-labs/mind-contracts",
3
- "version": "1.5.0",
3
+ "version": "2.9.0",
4
4
  "type": "module",
5
5
  "description": "Public contracts for the KB Labs Mind plugin. Declares artifacts, commands, workflows, and API guarantees for consumers.",
6
6
  "main": "./dist/index.js",
@@ -29,32 +29,32 @@
29
29
  "LICENSE"
30
30
  ],
31
31
  "sideEffects": false,
32
- "scripts": {
33
- "pretype-check": "pnpm --filter @kb-labs/mind-contracts build",
34
- "clean": "rimraf dist",
35
- "build": "tsup --config tsup.config.ts",
36
- "dev": "tsup --config tsup.config.ts --watch",
37
- "lint": "eslint src --ext .ts",
38
- "lint:fix": "eslint . --fix",
39
- "type-check": "tsc --noEmit",
40
- "test": "vitest run --passWithNoTests",
41
- "test:watch": "vitest"
42
- },
43
32
  "dependencies": {
44
33
  "zod": "^3.23.8"
45
34
  },
46
35
  "devDependencies": {
47
- "@kb-labs/devkit": "link:../../../../infra/kb-labs-devkit",
48
36
  "@types/node": "^24.3.3",
49
37
  "eslint": "^9",
50
38
  "rimraf": "^6.0.1",
51
39
  "semver": "^7.6.3",
52
40
  "tsup": "^8.5.0",
53
41
  "typescript": "^5.6.3",
54
- "vitest": "^3.2.4"
42
+ "vitest": "^3.2.4",
43
+ "@kb-labs/devkit": "2.9.0"
55
44
  },
56
45
  "engines": {
57
46
  "node": ">=20.0.0",
58
47
  "pnpm": ">=9.0.0"
48
+ },
49
+ "scripts": {
50
+ "pretype-check": "pnpm --filter @kb-labs/mind-contracts build",
51
+ "clean": "rimraf dist",
52
+ "build": "tsup --config tsup.config.ts",
53
+ "dev": "tsup --config tsup.config.ts --watch",
54
+ "lint": "eslint src --ext .ts",
55
+ "lint:fix": "eslint . --fix",
56
+ "type-check": "tsc --noEmit",
57
+ "test": "vitest run --passWithNoTests",
58
+ "test:watch": "vitest"
59
59
  }
60
- }
60
+ }