@contractspec/example.ai-support-bot 3.7.0 → 3.7.3
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 +3 -3
- package/CHANGELOG.md +34 -0
- package/package.json +19 -33
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 noBundle=false
|
|
6
|
-
Bundled 6 modules in
|
|
6
|
+
Bundled 6 modules in 11ms
|
|
7
7
|
|
|
8
8
|
./ai-support-bot.feature.js 0.66 KB (entry point)
|
|
9
9
|
./index.js 4.38 KB (entry point)
|
|
@@ -13,7 +13,7 @@ Bundled 6 modules in 6ms
|
|
|
13
13
|
./setup.js 1.44 KB (entry point)
|
|
14
14
|
|
|
15
15
|
[contractspec-bun-build] transpile target=node root=src entries=6 noBundle=false
|
|
16
|
-
Bundled 6 modules in
|
|
16
|
+
Bundled 6 modules in 9ms
|
|
17
17
|
|
|
18
18
|
./ai-support-bot.feature.js 0.66 KB (entry point)
|
|
19
19
|
./index.js 4.36 KB (entry point)
|
|
@@ -23,7 +23,7 @@ Bundled 6 modules in 24ms
|
|
|
23
23
|
./setup.js 1.43 KB (entry point)
|
|
24
24
|
|
|
25
25
|
[contractspec-bun-build] transpile target=browser root=src entries=6 noBundle=false
|
|
26
|
-
Bundled 6 modules in
|
|
26
|
+
Bundled 6 modules in 30ms
|
|
27
27
|
|
|
28
28
|
./ai-support-bot.feature.js 0.66 KB (entry point)
|
|
29
29
|
./index.js 4.36 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @contractspec/example.ai-support-bot
|
|
2
2
|
|
|
3
|
+
## 3.7.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: release
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @contractspec/lib.contracts-spec@3.7.3
|
|
10
|
+
- @contractspec/lib.support-bot@3.7.3
|
|
11
|
+
- @contractspec/lib.knowledge@3.7.3
|
|
12
|
+
- @contractspec/lib.logger@3.7.3
|
|
13
|
+
|
|
14
|
+
## 3.7.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 8cd229b: fix: release
|
|
19
|
+
- Updated dependencies [8cd229b]
|
|
20
|
+
- Updated dependencies [04bc555]
|
|
21
|
+
- @contractspec/lib.contracts-spec@3.7.2
|
|
22
|
+
- @contractspec/lib.support-bot@3.7.2
|
|
23
|
+
- @contractspec/lib.knowledge@3.7.2
|
|
24
|
+
- @contractspec/lib.logger@3.7.2
|
|
25
|
+
|
|
26
|
+
## 3.7.1
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 5eb8626: fix: package exports
|
|
31
|
+
- Updated dependencies [5eb8626]
|
|
32
|
+
- @contractspec/lib.contracts-spec@3.7.1
|
|
33
|
+
- @contractspec/lib.support-bot@3.7.1
|
|
34
|
+
- @contractspec/lib.knowledge@3.7.1
|
|
35
|
+
- @contractspec/lib.logger@3.7.1
|
|
36
|
+
|
|
3
37
|
## 3.7.0
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,57 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.ai-support-bot",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.3",
|
|
4
4
|
"description": "AI support bot example: classify and resolve a support ticket using @contractspec/lib.support-bot.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
+
"browser": "./dist/browser/index.js",
|
|
10
11
|
"bun": "./dist/index.js",
|
|
11
12
|
"node": "./dist/node/index.js",
|
|
12
|
-
"browser": "./dist/browser/index.js",
|
|
13
13
|
"default": "./dist/index.js"
|
|
14
14
|
},
|
|
15
15
|
"./ai-support-bot.feature": {
|
|
16
16
|
"types": "./dist/ai-support-bot.feature.d.ts",
|
|
17
|
+
"browser": "./dist/browser/ai-support-bot.feature.js",
|
|
17
18
|
"bun": "./dist/ai-support-bot.feature.js",
|
|
18
19
|
"node": "./dist/node/ai-support-bot.feature.js",
|
|
19
|
-
"browser": "./dist/browser/ai-support-bot.feature.js",
|
|
20
20
|
"default": "./dist/ai-support-bot.feature.js"
|
|
21
21
|
},
|
|
22
22
|
"./docs": {
|
|
23
23
|
"types": "./dist/docs/index.d.ts",
|
|
24
|
+
"browser": "./dist/browser/docs/index.js",
|
|
24
25
|
"bun": "./dist/docs/index.js",
|
|
25
26
|
"node": "./dist/node/docs/index.js",
|
|
26
|
-
"browser": "./dist/browser/docs/index.js",
|
|
27
27
|
"default": "./dist/docs/index.js"
|
|
28
28
|
},
|
|
29
29
|
"./docs/ai-support-bot.docblock": {
|
|
30
30
|
"types": "./dist/docs/ai-support-bot.docblock.d.ts",
|
|
31
|
+
"browser": "./dist/browser/docs/ai-support-bot.docblock.js",
|
|
31
32
|
"bun": "./dist/docs/ai-support-bot.docblock.js",
|
|
32
33
|
"node": "./dist/node/docs/ai-support-bot.docblock.js",
|
|
33
|
-
"browser": "./dist/browser/docs/ai-support-bot.docblock.js",
|
|
34
34
|
"default": "./dist/docs/ai-support-bot.docblock.js"
|
|
35
35
|
},
|
|
36
|
-
"./docs/index": {
|
|
37
|
-
"types": "./dist/docs/index.d.ts",
|
|
38
|
-
"bun": "./dist/docs/index.js",
|
|
39
|
-
"node": "./dist/node/docs/index.js",
|
|
40
|
-
"browser": "./dist/browser/docs/index.js",
|
|
41
|
-
"default": "./dist/docs/index.js"
|
|
42
|
-
},
|
|
43
36
|
"./example": {
|
|
44
37
|
"types": "./dist/example.d.ts",
|
|
38
|
+
"browser": "./dist/browser/example.js",
|
|
45
39
|
"bun": "./dist/example.js",
|
|
46
40
|
"node": "./dist/node/example.js",
|
|
47
|
-
"browser": "./dist/browser/example.js",
|
|
48
41
|
"default": "./dist/example.js"
|
|
49
42
|
},
|
|
50
43
|
"./setup": {
|
|
51
44
|
"types": "./dist/setup.d.ts",
|
|
45
|
+
"browser": "./dist/browser/setup.js",
|
|
52
46
|
"bun": "./dist/setup.js",
|
|
53
47
|
"node": "./dist/node/setup.js",
|
|
54
|
-
"browser": "./dist/browser/setup.js",
|
|
55
48
|
"default": "./dist/setup.js"
|
|
56
49
|
}
|
|
57
50
|
},
|
|
@@ -71,66 +64,59 @@
|
|
|
71
64
|
"typecheck": "tsc --noEmit"
|
|
72
65
|
},
|
|
73
66
|
"dependencies": {
|
|
74
|
-
"@contractspec/lib.support-bot": "3.7.
|
|
75
|
-
"@contractspec/lib.knowledge": "3.7.
|
|
76
|
-
"@contractspec/lib.contracts-spec": "3.7.
|
|
77
|
-
"@contractspec/lib.logger": "3.7.
|
|
67
|
+
"@contractspec/lib.support-bot": "3.7.3",
|
|
68
|
+
"@contractspec/lib.knowledge": "3.7.3",
|
|
69
|
+
"@contractspec/lib.contracts-spec": "3.7.3",
|
|
70
|
+
"@contractspec/lib.logger": "3.7.3"
|
|
78
71
|
},
|
|
79
72
|
"devDependencies": {
|
|
80
|
-
"@contractspec/tool.typescript": "3.7.
|
|
73
|
+
"@contractspec/tool.typescript": "3.7.3",
|
|
81
74
|
"typescript": "^5.9.3",
|
|
82
|
-
"@contractspec/tool.bun": "3.7.
|
|
75
|
+
"@contractspec/tool.bun": "3.7.3"
|
|
83
76
|
},
|
|
84
77
|
"publishConfig": {
|
|
85
78
|
"access": "public",
|
|
86
79
|
"exports": {
|
|
87
80
|
".": {
|
|
88
81
|
"types": "./dist/index.d.ts",
|
|
82
|
+
"browser": "./dist/browser/index.js",
|
|
89
83
|
"bun": "./dist/index.js",
|
|
90
84
|
"node": "./dist/node/index.js",
|
|
91
|
-
"browser": "./dist/browser/index.js",
|
|
92
85
|
"default": "./dist/index.js"
|
|
93
86
|
},
|
|
94
87
|
"./ai-support-bot.feature": {
|
|
95
88
|
"types": "./dist/ai-support-bot.feature.d.ts",
|
|
89
|
+
"browser": "./dist/browser/ai-support-bot.feature.js",
|
|
96
90
|
"bun": "./dist/ai-support-bot.feature.js",
|
|
97
91
|
"node": "./dist/node/ai-support-bot.feature.js",
|
|
98
|
-
"browser": "./dist/browser/ai-support-bot.feature.js",
|
|
99
92
|
"default": "./dist/ai-support-bot.feature.js"
|
|
100
93
|
},
|
|
101
94
|
"./docs": {
|
|
102
95
|
"types": "./dist/docs/index.d.ts",
|
|
96
|
+
"browser": "./dist/browser/docs/index.js",
|
|
103
97
|
"bun": "./dist/docs/index.js",
|
|
104
98
|
"node": "./dist/node/docs/index.js",
|
|
105
|
-
"browser": "./dist/browser/docs/index.js",
|
|
106
99
|
"default": "./dist/docs/index.js"
|
|
107
100
|
},
|
|
108
101
|
"./docs/ai-support-bot.docblock": {
|
|
109
102
|
"types": "./dist/docs/ai-support-bot.docblock.d.ts",
|
|
103
|
+
"browser": "./dist/browser/docs/ai-support-bot.docblock.js",
|
|
110
104
|
"bun": "./dist/docs/ai-support-bot.docblock.js",
|
|
111
105
|
"node": "./dist/node/docs/ai-support-bot.docblock.js",
|
|
112
|
-
"browser": "./dist/browser/docs/ai-support-bot.docblock.js",
|
|
113
106
|
"default": "./dist/docs/ai-support-bot.docblock.js"
|
|
114
107
|
},
|
|
115
|
-
"./docs/index": {
|
|
116
|
-
"types": "./dist/docs/index.d.ts",
|
|
117
|
-
"bun": "./dist/docs/index.js",
|
|
118
|
-
"node": "./dist/node/docs/index.js",
|
|
119
|
-
"browser": "./dist/browser/docs/index.js",
|
|
120
|
-
"default": "./dist/docs/index.js"
|
|
121
|
-
},
|
|
122
108
|
"./example": {
|
|
123
109
|
"types": "./dist/example.d.ts",
|
|
110
|
+
"browser": "./dist/browser/example.js",
|
|
124
111
|
"bun": "./dist/example.js",
|
|
125
112
|
"node": "./dist/node/example.js",
|
|
126
|
-
"browser": "./dist/browser/example.js",
|
|
127
113
|
"default": "./dist/example.js"
|
|
128
114
|
},
|
|
129
115
|
"./setup": {
|
|
130
116
|
"types": "./dist/setup.d.ts",
|
|
117
|
+
"browser": "./dist/browser/setup.js",
|
|
131
118
|
"bun": "./dist/setup.js",
|
|
132
119
|
"node": "./dist/node/setup.js",
|
|
133
|
-
"browser": "./dist/browser/setup.js",
|
|
134
120
|
"default": "./dist/setup.js"
|
|
135
121
|
}
|
|
136
122
|
},
|