@contractspec/example.integration-hub 3.8.6 → 3.8.8
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/dist/index.js +1 -1
- package/dist/mcp-example.js +1 -1
- package/dist/node/index.js +1 -1
- package/dist/node/mcp-example.js +1 -1
- package/dist/node/run-mcp.js +1 -1
- package/dist/run-mcp.js +1 -1
- package/package.json +13 -13
package/dist/index.js
CHANGED
|
@@ -497,10 +497,10 @@ var CreateIntegrationContract = defineCommand2({
|
|
|
497
497
|
}
|
|
498
498
|
});
|
|
499
499
|
// src/mcp-example.ts
|
|
500
|
-
import { randomUUID } from "crypto";
|
|
501
500
|
import {
|
|
502
501
|
createMcpToolsets
|
|
503
502
|
} from "@contractspec/lib.ai-agent/tools/mcp-client";
|
|
503
|
+
import { randomUUID } from "crypto";
|
|
504
504
|
var DEFAULT_STDIO_ARGS = [
|
|
505
505
|
"-y",
|
|
506
506
|
"@modelcontextprotocol/server-filesystem",
|
package/dist/mcp-example.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/mcp-example.ts
|
|
3
|
-
import { randomUUID } from "crypto";
|
|
4
3
|
import {
|
|
5
4
|
createMcpToolsets
|
|
6
5
|
} from "@contractspec/lib.ai-agent/tools/mcp-client";
|
|
6
|
+
import { randomUUID } from "crypto";
|
|
7
7
|
var DEFAULT_STDIO_ARGS = [
|
|
8
8
|
"-y",
|
|
9
9
|
"@modelcontextprotocol/server-filesystem",
|
package/dist/node/index.js
CHANGED
|
@@ -496,10 +496,10 @@ var CreateIntegrationContract = defineCommand2({
|
|
|
496
496
|
}
|
|
497
497
|
});
|
|
498
498
|
// src/mcp-example.ts
|
|
499
|
-
import { randomUUID } from "node:crypto";
|
|
500
499
|
import {
|
|
501
500
|
createMcpToolsets
|
|
502
501
|
} from "@contractspec/lib.ai-agent/tools/mcp-client";
|
|
502
|
+
import { randomUUID } from "crypto";
|
|
503
503
|
var DEFAULT_STDIO_ARGS = [
|
|
504
504
|
"-y",
|
|
505
505
|
"@modelcontextprotocol/server-filesystem",
|
package/dist/node/mcp-example.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/mcp-example.ts
|
|
2
|
-
import { randomUUID } from "node:crypto";
|
|
3
2
|
import {
|
|
4
3
|
createMcpToolsets
|
|
5
4
|
} from "@contractspec/lib.ai-agent/tools/mcp-client";
|
|
5
|
+
import { randomUUID } from "crypto";
|
|
6
6
|
var DEFAULT_STDIO_ARGS = [
|
|
7
7
|
"-y",
|
|
8
8
|
"@modelcontextprotocol/server-filesystem",
|
package/dist/node/run-mcp.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/mcp-example.ts
|
|
2
|
-
import { randomUUID } from "node:crypto";
|
|
3
2
|
import {
|
|
4
3
|
createMcpToolsets
|
|
5
4
|
} from "@contractspec/lib.ai-agent/tools/mcp-client";
|
|
5
|
+
import { randomUUID } from "crypto";
|
|
6
6
|
var DEFAULT_STDIO_ARGS = [
|
|
7
7
|
"-y",
|
|
8
8
|
"@modelcontextprotocol/server-filesystem",
|
package/dist/run-mcp.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/mcp-example.ts
|
|
3
|
-
import { randomUUID } from "crypto";
|
|
4
3
|
import {
|
|
5
4
|
createMcpToolsets
|
|
6
5
|
} from "@contractspec/lib.ai-agent/tools/mcp-client";
|
|
6
|
+
import { randomUUID } from "crypto";
|
|
7
7
|
var DEFAULT_STDIO_ARGS = [
|
|
8
8
|
"-y",
|
|
9
9
|
"@modelcontextprotocol/server-filesystem",
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.integration-hub",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.8",
|
|
4
4
|
"description": "Integration Hub example with sync engine and field mappings for ContractSpec",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
9
9
|
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
10
|
-
"build": "bun run
|
|
10
|
+
"build": "bun run build:bundle && bun run build:types",
|
|
11
11
|
"build:bundle": "contractspec-bun-build transpile",
|
|
12
12
|
"build:types": "contractspec-bun-build types",
|
|
13
13
|
"dev": "contractspec-bun-build dev",
|
|
@@ -22,24 +22,24 @@
|
|
|
22
22
|
"typecheck": "tsc --noEmit"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@contractspec/lib.ai-agent": "8.0.
|
|
26
|
-
"@contractspec/module.ai-chat": "4.3.
|
|
27
|
-
"@contractspec/lib.schema": "3.7.
|
|
28
|
-
"@contractspec/lib.contracts-spec": "5.0.
|
|
29
|
-
"@contractspec/lib.example-shared-ui": "6.0.
|
|
30
|
-
"@contractspec/lib.design-system": "3.8.
|
|
31
|
-
"@contractspec/lib.runtime-sandbox": "2.7.
|
|
25
|
+
"@contractspec/lib.ai-agent": "8.0.4",
|
|
26
|
+
"@contractspec/module.ai-chat": "4.3.16",
|
|
27
|
+
"@contractspec/lib.schema": "3.7.13",
|
|
28
|
+
"@contractspec/lib.contracts-spec": "5.0.4",
|
|
29
|
+
"@contractspec/lib.example-shared-ui": "6.0.16",
|
|
30
|
+
"@contractspec/lib.design-system": "3.8.9",
|
|
31
|
+
"@contractspec/lib.runtime-sandbox": "2.7.13",
|
|
32
32
|
"react": "19.2.0",
|
|
33
33
|
"react-dom": "19.2.0",
|
|
34
|
-
"@contractspec/lib.presentation-runtime-core": "3.9.
|
|
34
|
+
"@contractspec/lib.presentation-runtime-core": "3.9.4"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@contractspec/tool.typescript": "3.7.
|
|
37
|
+
"@contractspec/tool.typescript": "3.7.12",
|
|
38
38
|
"typescript": "^5.9.3",
|
|
39
39
|
"@types/react": "^19.2.14",
|
|
40
40
|
"@types/react-dom": "^19.2.2",
|
|
41
|
-
"@contractspec/tool.bun": "3.7.
|
|
42
|
-
"happy-dom": "^20.8.
|
|
41
|
+
"@contractspec/tool.bun": "3.7.12",
|
|
42
|
+
"happy-dom": "^20.8.8"
|
|
43
43
|
},
|
|
44
44
|
"exports": {
|
|
45
45
|
".": {
|