@contractspec/example.product-intent 1.59.0 → 1.61.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.
@@ -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 36ms
6
+ Bundled 6 modules in 43ms
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 39ms
16
+ Bundled 6 modules in 37ms
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,33 @@
1
1
  # @contractspec/example.product-intent
2
2
 
3
+ ## 1.61.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 374fd71: fix: publishing
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [374fd71]
12
+ - @contractspec/integration.providers-impls@1.61.0
13
+ - @contractspec/lib.product-intent-utils@1.61.0
14
+ - @contractspec/lib.contracts@1.61.0
15
+ - @contractspec/lib.ai-agent@1.61.0
16
+
17
+ ## 1.60.0
18
+
19
+ ### Minor Changes
20
+
21
+ - fix: publish with bun
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @contractspec/integration.providers-impls@1.60.0
27
+ - @contractspec/lib.product-intent-utils@1.60.0
28
+ - @contractspec/lib.contracts@1.60.0
29
+ - @contractspec/lib.ai-agent@1.60.0
30
+
3
31
  ## 1.59.0
4
32
 
5
33
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.product-intent",
3
- "version": "1.59.0",
3
+ "version": "1.61.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
- ".": "./src/index.ts",
16
- "./example": "./src/example.ts",
17
- "./load-evidence": "./src/load-evidence.ts",
18
- "./posthog-signals": "./src/posthog-signals.ts",
19
- "./script": "./src/script.ts",
20
- "./sync-actions": "./src/sync-actions.ts"
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "bun": "./dist/index.js",
18
+ "node": "./dist/node/index.js",
19
+ "default": "./dist/index.js"
20
+ },
21
+ "./example": {
22
+ "types": "./dist/example.d.ts",
23
+ "bun": "./dist/example.js",
24
+ "node": "./dist/node/example.js",
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.js",
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.js",
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.js",
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.js",
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.59.0",
39
- "@contractspec/lib.ai-agent": "1.59.0",
40
- "@contractspec/lib.product-intent-utils": "1.59.0",
41
- "@contractspec/integration.providers-impls": "1.59.0"
68
+ "@contractspec/lib.contracts": "1.61.0",
69
+ "@contractspec/lib.ai-agent": "1.61.0",
70
+ "@contractspec/lib.product-intent-utils": "1.61.0",
71
+ "@contractspec/integration.providers-impls": "1.61.0"
42
72
  },
43
73
  "devDependencies": {
44
- "@contractspec/tool.typescript": "1.59.0",
74
+ "@contractspec/tool.typescript": "1.61.0",
45
75
  "typescript": "^5.9.3",
46
- "@contractspec/tool.bun": "1.58.0"
76
+ "@contractspec/tool.bun": "1.60.0"
47
77
  },
48
78
  "publishConfig": {
49
79
  "access": "public",
@@ -51,37 +81,37 @@
51
81
  ".": {
52
82
  "types": "./dist/index.d.ts",
53
83
  "bun": "./dist/index.js",
54
- "node": "./dist/node/index.mjs",
84
+ "node": "./dist/node/index.js",
55
85
  "default": "./dist/index.js"
56
86
  },
57
87
  "./example": {
58
88
  "types": "./dist/example.d.ts",
59
89
  "bun": "./dist/example.js",
60
- "node": "./dist/node/example.mjs",
90
+ "node": "./dist/node/example.js",
61
91
  "default": "./dist/example.js"
62
92
  },
63
93
  "./load-evidence": {
64
94
  "types": "./dist/load-evidence.d.ts",
65
95
  "bun": "./dist/load-evidence.js",
66
- "node": "./dist/node/load-evidence.mjs",
96
+ "node": "./dist/node/load-evidence.js",
67
97
  "default": "./dist/load-evidence.js"
68
98
  },
69
99
  "./posthog-signals": {
70
100
  "types": "./dist/posthog-signals.d.ts",
71
101
  "bun": "./dist/posthog-signals.js",
72
- "node": "./dist/node/posthog-signals.mjs",
102
+ "node": "./dist/node/posthog-signals.js",
73
103
  "default": "./dist/posthog-signals.js"
74
104
  },
75
105
  "./script": {
76
106
  "types": "./dist/script.d.ts",
77
107
  "bun": "./dist/script.js",
78
- "node": "./dist/node/script.mjs",
108
+ "node": "./dist/node/script.js",
79
109
  "default": "./dist/script.js"
80
110
  },
81
111
  "./sync-actions": {
82
112
  "types": "./dist/sync-actions.d.ts",
83
113
  "bun": "./dist/sync-actions.js",
84
- "node": "./dist/node/sync-actions.mjs",
114
+ "node": "./dist/node/sync-actions.js",
85
115
  "default": "./dist/sync-actions.js"
86
116
  }
87
117
  },