@contractspec/module.workspace 3.7.6 → 4.0.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.
- package/README.md +45 -28
- package/dist/ai/prompts/index.d.ts +1 -1
- package/dist/analysis/deps/graph.d.ts +2 -2
- package/dist/analysis/diff/deep-diff.d.ts +1 -1
- package/dist/analysis/diff/index.d.ts +1 -1
- package/dist/analysis/impact/index.d.ts +2 -2
- package/dist/analysis/index.d.ts +6 -6
- package/dist/analysis/snapshot/index.d.ts +2 -2
- package/dist/analysis/spec-scan.d.ts +1 -1
- package/dist/formatters/spec-to-docblock.d.ts +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3775 -3802
- package/dist/node/index.js +3775 -3802
- package/dist/templates/index.d.ts +9 -9
- package/dist/types/analysis-types.d.ts +1 -1
- package/dist/types/generation-types.d.ts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/llm-types.d.ts +1 -1
- package/package.json +5 -5
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Code generation templates for ContractSpec.
|
|
3
3
|
*/
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './event';
|
|
6
|
-
export * from './presentation';
|
|
7
|
-
export * from './workflow';
|
|
8
|
-
export * from './workflow-runner';
|
|
4
|
+
export * from './app-config';
|
|
9
5
|
export * from './data-view';
|
|
10
|
-
export * from './
|
|
6
|
+
export * from './event';
|
|
11
7
|
export * from './experiment';
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './migration';
|
|
8
|
+
export * from './handler';
|
|
14
9
|
export * from './integration';
|
|
15
10
|
export * from './knowledge';
|
|
16
|
-
export * from './
|
|
11
|
+
export * from './migration';
|
|
12
|
+
export * from './operation';
|
|
13
|
+
export * from './presentation';
|
|
14
|
+
export * from './telemetry';
|
|
17
15
|
export * from './utils';
|
|
16
|
+
export * from './workflow';
|
|
17
|
+
export * from './workflow-runner';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Analysis-related type definitions.
|
|
3
3
|
*/
|
|
4
|
-
import type { Stability } from './spec-types';
|
|
5
4
|
import type { ContractSpecType } from '@contractspec/lib.contracts-spec';
|
|
5
|
+
import type { Stability } from './spec-types';
|
|
6
6
|
/**
|
|
7
7
|
* Spec type detected from file analysis.
|
|
8
8
|
* Covers all contract types from @contractspec/lib.contracts-spec.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Code generation related type definitions.
|
|
3
3
|
*/
|
|
4
4
|
import type { OpKind } from '@contractspec/lib.contracts-spec';
|
|
5
|
-
import type { PresentationKind } from './spec-types';
|
|
6
5
|
import type { RuleSyncConfig } from './rulesync-types';
|
|
6
|
+
import type { PresentationKind } from './spec-types';
|
|
7
7
|
/**
|
|
8
8
|
* Test target types.
|
|
9
9
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Shared type definitions for ContractSpec workspace operations.
|
|
3
3
|
*/
|
|
4
|
-
export * from './spec-types';
|
|
5
4
|
export * from './analysis-types';
|
|
6
5
|
export * from './generation-types';
|
|
7
6
|
export * from './llm-types';
|
|
8
7
|
export * from './rulesync-types';
|
|
8
|
+
export * from './spec-types';
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Type definitions for converting specs to LLM-friendly markdown formats.
|
|
5
5
|
*/
|
|
6
|
-
import type { Stability } from './spec-types';
|
|
7
6
|
import type { AnalyzedOperationKind, AnalyzedSpecType } from './analysis-types';
|
|
7
|
+
import type { Stability } from './spec-types';
|
|
8
8
|
/**
|
|
9
9
|
* LLM export format options.
|
|
10
10
|
* - **full**: Complete information including source code and all details (for deep LLM context)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.workspace",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Workspace discovery and management module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -24,19 +24,19 @@
|
|
|
24
24
|
"dev": "contractspec-bun-build dev",
|
|
25
25
|
"clean": "rimraf dist .turbo",
|
|
26
26
|
"lint": "bun lint:fix",
|
|
27
|
-
"lint:fix": "
|
|
28
|
-
"lint:check": "
|
|
27
|
+
"lint:fix": "biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .",
|
|
28
|
+
"lint:check": "biome check .",
|
|
29
29
|
"test": "bun test",
|
|
30
30
|
"prebuild": "contractspec-bun-build prebuild",
|
|
31
31
|
"typecheck": "tsc --noEmit"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@contractspec/lib.contracts-spec": "
|
|
34
|
+
"@contractspec/lib.contracts-spec": "4.0.0",
|
|
35
35
|
"@contractspec/lib.schema": "3.7.6",
|
|
36
36
|
"compare-versions": "^6.1.1",
|
|
37
37
|
"ts-morph": "^27.0.2",
|
|
38
38
|
"zod": "^4.3.5",
|
|
39
|
-
"@contractspec/lib.contracts-integrations": "3.7.
|
|
39
|
+
"@contractspec/lib.contracts-integrations": "3.7.7"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@contractspec/tool.typescript": "3.7.6",
|