@contractspec/bundle.library 3.8.4 → 3.8.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.
- package/.turbo/turbo-build.log +126 -112
- package/CHANGELOG.md +56 -0
- package/dist/application/index.js +806 -131
- package/dist/application/mcp/cliMcp.js +21 -2
- package/dist/application/mcp/common.js +21 -2
- package/dist/application/mcp/common.test.d.ts +1 -0
- package/dist/application/mcp/contractsMcp.js +21 -2
- package/dist/application/mcp/docsMcp.catalog.d.ts +2 -0
- package/dist/application/mcp/docsMcp.catalog.js +382 -0
- package/dist/application/mcp/docsMcp.d.ts +5 -1
- package/dist/application/mcp/docsMcp.data.d.ts +85 -0
- package/dist/application/mcp/docsMcp.data.js +148 -0
- package/dist/application/mcp/docsMcp.js +776 -101
- package/dist/application/mcp/docsMcp.prompts.d.ts +3 -0
- package/dist/application/mcp/docsMcp.prompts.js +522 -0
- package/dist/application/mcp/docsMcp.reference.d.ts +24 -0
- package/dist/application/mcp/docsMcp.reference.js +236 -0
- package/dist/application/mcp/docsMcp.resources.d.ts +3 -0
- package/dist/application/mcp/docsMcp.resources.js +520 -0
- package/dist/application/mcp/docsMcp.test.d.ts +1 -0
- package/dist/application/mcp/docsMcp.tools.d.ts +3 -0
- package/dist/application/mcp/docsMcp.tools.js +519 -0
- package/dist/application/mcp/index.js +806 -131
- package/dist/application/mcp/internalMcp.js +21 -2
- package/dist/application/mcp/normalizeMcpRequest.d.ts +1 -0
- package/dist/application/mcp/normalizeMcpRequest.js +22 -0
- package/dist/application/mcp/providerRankingMcp.js +21 -2
- package/dist/features/index.js +15 -15
- package/dist/index.js +171 -171
- package/dist/node/application/index.js +806 -131
- package/dist/node/application/mcp/cliMcp.js +21 -2
- package/dist/node/application/mcp/common.js +21 -2
- package/dist/node/application/mcp/contractsMcp.js +21 -2
- package/dist/node/application/mcp/docsMcp.catalog.js +381 -0
- package/dist/node/application/mcp/docsMcp.data.js +147 -0
- package/dist/node/application/mcp/docsMcp.js +776 -101
- package/dist/node/application/mcp/docsMcp.prompts.js +521 -0
- package/dist/node/application/mcp/docsMcp.reference.js +235 -0
- package/dist/node/application/mcp/docsMcp.resources.js +519 -0
- package/dist/node/application/mcp/docsMcp.tools.js +518 -0
- package/dist/node/application/mcp/index.js +806 -131
- package/dist/node/application/mcp/internalMcp.js +21 -2
- package/dist/node/application/mcp/normalizeMcpRequest.js +21 -0
- package/dist/node/application/mcp/providerRankingMcp.js +21 -2
- package/dist/node/features/index.js +15 -15
- package/dist/node/index.js +171 -171
- package/dist/node/presentation/features/hooks/index.js +12 -12
- package/dist/node/presentation/features/hooks/useContractsRegistry.js +12 -12
- package/dist/node/presentation/features/index.js +12 -12
- package/dist/node/presentation/features/organisms/FeatureDataViewsList.js +12 -12
- package/dist/node/presentation/features/organisms/FeatureEventsList.js +12 -12
- package/dist/node/presentation/features/organisms/FeatureFormsList.js +12 -12
- package/dist/node/presentation/features/organisms/FeaturePresentationsList.js +12 -12
- package/dist/node/presentation/features/organisms/index.js +12 -12
- package/dist/node/presentation/features/templates/FeatureDataViewsTemplate/FeatureDataViewsTemplate.js +12 -12
- package/dist/node/presentation/features/templates/FeatureDataViewsTemplate/index.js +12 -12
- package/dist/node/presentation/features/templates/FeatureEventsTemplate/FeatureEventsTemplate.js +12 -12
- package/dist/node/presentation/features/templates/FeatureEventsTemplate/index.js +12 -12
- package/dist/node/presentation/features/templates/FeatureFormsTemplate/FeatureFormsTemplate.js +12 -12
- package/dist/node/presentation/features/templates/FeatureFormsTemplate/index.js +12 -12
- package/dist/node/presentation/features/templates/FeaturePresentationsTemplate/FeaturePresentationsTemplate.js +12 -12
- package/dist/node/presentation/features/templates/FeaturePresentationsTemplate/index.js +12 -12
- package/dist/presentation/features/hooks/index.js +12 -12
- package/dist/presentation/features/hooks/useContractsRegistry.js +12 -12
- package/dist/presentation/features/index.js +12 -12
- package/dist/presentation/features/organisms/FeatureDataViewsList.js +12 -12
- package/dist/presentation/features/organisms/FeatureEventsList.js +12 -12
- package/dist/presentation/features/organisms/FeatureFormsList.js +12 -12
- package/dist/presentation/features/organisms/FeaturePresentationsList.js +12 -12
- package/dist/presentation/features/organisms/index.js +12 -12
- package/dist/presentation/features/templates/FeatureDataViewsTemplate/FeatureDataViewsTemplate.js +12 -12
- package/dist/presentation/features/templates/FeatureDataViewsTemplate/index.js +12 -12
- package/dist/presentation/features/templates/FeatureEventsTemplate/FeatureEventsTemplate.js +12 -12
- package/dist/presentation/features/templates/FeatureEventsTemplate/index.js +12 -12
- package/dist/presentation/features/templates/FeatureFormsTemplate/FeatureFormsTemplate.js +12 -12
- package/dist/presentation/features/templates/FeatureFormsTemplate/index.js +12 -12
- package/dist/presentation/features/templates/FeaturePresentationsTemplate/FeaturePresentationsTemplate.js +12 -12
- package/dist/presentation/features/templates/FeaturePresentationsTemplate/index.js +12 -12
- package/package.json +108 -24
- package/src/application/mcp/common.test.ts +64 -0
- package/src/application/mcp/common.ts +5 -2
- package/src/application/mcp/docsMcp.catalog.ts +2 -0
- package/src/application/mcp/docsMcp.data.ts +196 -0
- package/src/application/mcp/docsMcp.prompts.ts +165 -0
- package/src/application/mcp/docsMcp.reference.ts +152 -0
- package/src/application/mcp/docsMcp.resources.ts +194 -0
- package/src/application/mcp/docsMcp.test.ts +148 -0
- package/src/application/mcp/docsMcp.tools.ts +183 -0
- package/src/application/mcp/docsMcp.ts +13 -177
- package/src/application/mcp/normalizeMcpRequest.ts +30 -0
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
package/dist/node/presentation/features/templates/FeatureEventsTemplate/FeatureEventsTemplate.js
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
package/dist/node/presentation/features/templates/FeatureFormsTemplate/FeatureFormsTemplate.js
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
// src/features/docs/docs.contracts.ts
|
|
2
|
-
import {
|
|
3
|
-
ContractReferenceQuery,
|
|
4
|
-
DocSummaryModel,
|
|
5
|
-
DocsIndexInput,
|
|
6
|
-
DocsIndexOutput,
|
|
7
|
-
DocsIndexQuery,
|
|
8
|
-
DocsIndexQuery as DocsIndexQuery2
|
|
9
|
-
} from "@contractspec/lib.contracts-spec/docs";
|
|
10
1
|
// src/features/contracts-registry.ts
|
|
11
2
|
import {
|
|
12
3
|
EventRegistry,
|
|
@@ -17,11 +8,11 @@ import {
|
|
|
17
8
|
} from "@contractspec/lib.contracts-spec/data-views";
|
|
18
9
|
import {
|
|
19
10
|
ContractReferenceDataView,
|
|
20
|
-
ContractReferenceQuery
|
|
11
|
+
ContractReferenceQuery,
|
|
21
12
|
DocsGenerateCommand,
|
|
22
13
|
DocsGeneratedEvent,
|
|
23
14
|
DocsIndexDataView,
|
|
24
|
-
DocsIndexQuery
|
|
15
|
+
DocsIndexQuery,
|
|
25
16
|
DocsLayoutPresentation,
|
|
26
17
|
DocsPublishCommand,
|
|
27
18
|
DocsPublishedEvent,
|
|
@@ -43,7 +34,7 @@ import {
|
|
|
43
34
|
var operationRegistry = null;
|
|
44
35
|
function createContractSpecOperationRegistry() {
|
|
45
36
|
const registry = new OperationSpecRegistry;
|
|
46
|
-
registry.register(
|
|
37
|
+
registry.register(DocsIndexQuery).register(ContractReferenceQuery).register(DocsGenerateCommand).register(DocsPublishCommand);
|
|
47
38
|
return registry;
|
|
48
39
|
}
|
|
49
40
|
function getContractSpecOperationRegistry() {
|
|
@@ -189,6 +180,15 @@ var DocsFeature = {
|
|
|
189
180
|
}
|
|
190
181
|
};
|
|
191
182
|
|
|
183
|
+
// src/features/docs/docs.contracts.ts
|
|
184
|
+
import {
|
|
185
|
+
ContractReferenceQuery as ContractReferenceQuery2,
|
|
186
|
+
DocSummaryModel,
|
|
187
|
+
DocsIndexInput,
|
|
188
|
+
DocsIndexOutput,
|
|
189
|
+
DocsIndexQuery as DocsIndexQuery2,
|
|
190
|
+
DocsIndexQuery as DocsIndexQuery3
|
|
191
|
+
} from "@contractspec/lib.contracts-spec/docs";
|
|
192
192
|
// src/features/mcp.feature.ts
|
|
193
193
|
var MCPFeature = {
|
|
194
194
|
meta: {
|