@contractspec/example.ai-support-bot 3.6.0 → 3.7.1
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 +25 -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 10ms
|
|
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 7ms
|
|
|
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 15ms
|
|
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 17ms
|
|
|
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 12ms
|
|
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,30 @@
|
|
|
1
1
|
# @contractspec/example.ai-support-bot
|
|
2
2
|
|
|
3
|
+
## 3.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5eb8626: fix: package exports
|
|
8
|
+
- Updated dependencies [5eb8626]
|
|
9
|
+
- @contractspec/lib.contracts-spec@3.7.1
|
|
10
|
+
- @contractspec/lib.support-bot@3.7.1
|
|
11
|
+
- @contractspec/lib.knowledge@3.7.1
|
|
12
|
+
- @contractspec/lib.logger@3.7.1
|
|
13
|
+
|
|
14
|
+
## 3.7.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- f88df2d: feat: add expo mobile app example
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [f88df2d]
|
|
23
|
+
- @contractspec/lib.contracts-spec@3.7.0
|
|
24
|
+
- @contractspec/lib.support-bot@3.7.0
|
|
25
|
+
- @contractspec/lib.knowledge@3.7.0
|
|
26
|
+
- @contractspec/lib.logger@3.7.0
|
|
27
|
+
|
|
3
28
|
## 3.6.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,57 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.ai-support-bot",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
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.
|
|
75
|
-
"@contractspec/lib.knowledge": "3.
|
|
76
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
77
|
-
"@contractspec/lib.logger": "3.
|
|
67
|
+
"@contractspec/lib.support-bot": "3.7.1",
|
|
68
|
+
"@contractspec/lib.knowledge": "3.7.1",
|
|
69
|
+
"@contractspec/lib.contracts-spec": "3.7.1",
|
|
70
|
+
"@contractspec/lib.logger": "3.7.1"
|
|
78
71
|
},
|
|
79
72
|
"devDependencies": {
|
|
80
|
-
"@contractspec/tool.typescript": "3.
|
|
73
|
+
"@contractspec/tool.typescript": "3.7.1",
|
|
81
74
|
"typescript": "^5.9.3",
|
|
82
|
-
"@contractspec/tool.bun": "3.
|
|
75
|
+
"@contractspec/tool.bun": "3.7.1"
|
|
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
|
},
|