@contractspec/example.product-intent 1.59.0 → 1.60.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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +14 -0
- package/package.json +43 -13
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=6
|
|
6
|
-
Bundled 6 modules in
|
|
6
|
+
Bundled 6 modules in 8ms
|
|
7
7
|
|
|
8
8
|
./example.js 0.80 KB (entry point)
|
|
9
9
|
./index.js 10.71 KB (entry point)
|
|
@@ -13,7 +13,7 @@ Bundled 6 modules in 36ms
|
|
|
13
13
|
./posthog-signals.js 7.59 KB (entry point)
|
|
14
14
|
|
|
15
15
|
[contractspec-bun-build] transpile target=node root=src entries=6
|
|
16
|
-
Bundled 6 modules in
|
|
16
|
+
Bundled 6 modules in 29ms
|
|
17
17
|
|
|
18
18
|
./example.js 0.79 KB (entry point)
|
|
19
19
|
./index.js 10.71 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @contractspec/example.product-intent
|
|
2
2
|
|
|
3
|
+
## 1.60.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fix: publish with bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @contractspec/integration.providers-impls@1.60.0
|
|
13
|
+
- @contractspec/lib.product-intent-utils@1.60.0
|
|
14
|
+
- @contractspec/lib.contracts@1.60.0
|
|
15
|
+
- @contractspec/lib.ai-agent@1.60.0
|
|
16
|
+
|
|
3
17
|
## 1.59.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.product-intent",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "Product intent example: evidence ingestion and prompt-ready outputs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -12,12 +12,42 @@
|
|
|
12
12
|
"type": "module",
|
|
13
13
|
"types": "./dist/index.d.ts",
|
|
14
14
|
"exports": {
|
|
15
|
-
".":
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"bun": "./dist/index.js",
|
|
18
|
+
"node": "./dist/node/index.mjs",
|
|
19
|
+
"default": "./dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./example": {
|
|
22
|
+
"types": "./dist/example.d.ts",
|
|
23
|
+
"bun": "./dist/example.js",
|
|
24
|
+
"node": "./dist/node/example.mjs",
|
|
25
|
+
"default": "./dist/example.js"
|
|
26
|
+
},
|
|
27
|
+
"./load-evidence": {
|
|
28
|
+
"types": "./dist/load-evidence.d.ts",
|
|
29
|
+
"bun": "./dist/load-evidence.js",
|
|
30
|
+
"node": "./dist/node/load-evidence.mjs",
|
|
31
|
+
"default": "./dist/load-evidence.js"
|
|
32
|
+
},
|
|
33
|
+
"./posthog-signals": {
|
|
34
|
+
"types": "./dist/posthog-signals.d.ts",
|
|
35
|
+
"bun": "./dist/posthog-signals.js",
|
|
36
|
+
"node": "./dist/node/posthog-signals.mjs",
|
|
37
|
+
"default": "./dist/posthog-signals.js"
|
|
38
|
+
},
|
|
39
|
+
"./script": {
|
|
40
|
+
"types": "./dist/script.d.ts",
|
|
41
|
+
"bun": "./dist/script.js",
|
|
42
|
+
"node": "./dist/node/script.mjs",
|
|
43
|
+
"default": "./dist/script.js"
|
|
44
|
+
},
|
|
45
|
+
"./sync-actions": {
|
|
46
|
+
"types": "./dist/sync-actions.d.ts",
|
|
47
|
+
"bun": "./dist/sync-actions.js",
|
|
48
|
+
"node": "./dist/node/sync-actions.mjs",
|
|
49
|
+
"default": "./dist/sync-actions.js"
|
|
50
|
+
}
|
|
21
51
|
},
|
|
22
52
|
"scripts": {
|
|
23
53
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -35,15 +65,15 @@
|
|
|
35
65
|
"typecheck": "tsc --noEmit"
|
|
36
66
|
},
|
|
37
67
|
"dependencies": {
|
|
38
|
-
"@contractspec/lib.contracts": "1.
|
|
39
|
-
"@contractspec/lib.ai-agent": "1.
|
|
40
|
-
"@contractspec/lib.product-intent-utils": "1.
|
|
41
|
-
"@contractspec/integration.providers-impls": "1.
|
|
68
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
69
|
+
"@contractspec/lib.ai-agent": "1.60.0",
|
|
70
|
+
"@contractspec/lib.product-intent-utils": "1.60.0",
|
|
71
|
+
"@contractspec/integration.providers-impls": "1.60.0"
|
|
42
72
|
},
|
|
43
73
|
"devDependencies": {
|
|
44
|
-
"@contractspec/tool.typescript": "1.
|
|
74
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
45
75
|
"typescript": "^5.9.3",
|
|
46
|
-
"@contractspec/tool.bun": "1.
|
|
76
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
47
77
|
},
|
|
48
78
|
"publishConfig": {
|
|
49
79
|
"access": "public",
|