@contractspec/lib.support-bot 1.58.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/package.json +105 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.support-bot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "AI support bot framework with RAG and ticket management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -33,32 +33,116 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@ai-sdk/provider-utils": "^4.0.4",
|
|
36
|
-
"@contractspec/lib.ai-agent": "1.
|
|
37
|
-
"@contractspec/lib.contracts": "1.
|
|
38
|
-
"@contractspec/lib.knowledge": "1.
|
|
39
|
-
"@contractspec/lib.schema": "1.
|
|
36
|
+
"@contractspec/lib.ai-agent": "1.60.0",
|
|
37
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
38
|
+
"@contractspec/lib.knowledge": "1.60.0",
|
|
39
|
+
"@contractspec/lib.schema": "1.60.0",
|
|
40
40
|
"zod": "^4.3.5"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@contractspec/tool.typescript": "1.
|
|
43
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
44
44
|
"typescript": "^5.9.3",
|
|
45
|
-
"@contractspec/tool.bun": "1.
|
|
45
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
46
46
|
},
|
|
47
47
|
"exports": {
|
|
48
|
-
".":
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"./
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
48
|
+
".": {
|
|
49
|
+
"types": "./dist/index.d.ts",
|
|
50
|
+
"bun": "./dist/index.js",
|
|
51
|
+
"node": "./dist/node/index.mjs",
|
|
52
|
+
"browser": "./dist/browser/index.js",
|
|
53
|
+
"default": "./dist/index.js"
|
|
54
|
+
},
|
|
55
|
+
"./bot": {
|
|
56
|
+
"types": "./dist/bot/index.d.ts",
|
|
57
|
+
"bun": "./dist/bot/index.js",
|
|
58
|
+
"node": "./dist/node/bot/index.mjs",
|
|
59
|
+
"browser": "./dist/browser/bot/index.js",
|
|
60
|
+
"default": "./dist/bot/index.js"
|
|
61
|
+
},
|
|
62
|
+
"./bot/auto-responder": {
|
|
63
|
+
"types": "./dist/bot/auto-responder.d.ts",
|
|
64
|
+
"bun": "./dist/bot/auto-responder.js",
|
|
65
|
+
"node": "./dist/node/bot/auto-responder.mjs",
|
|
66
|
+
"browser": "./dist/browser/bot/auto-responder.js",
|
|
67
|
+
"default": "./dist/bot/auto-responder.js"
|
|
68
|
+
},
|
|
69
|
+
"./bot/feedback-loop": {
|
|
70
|
+
"types": "./dist/bot/feedback-loop.d.ts",
|
|
71
|
+
"bun": "./dist/bot/feedback-loop.js",
|
|
72
|
+
"node": "./dist/node/bot/feedback-loop.mjs",
|
|
73
|
+
"browser": "./dist/browser/bot/feedback-loop.js",
|
|
74
|
+
"default": "./dist/bot/feedback-loop.js"
|
|
75
|
+
},
|
|
76
|
+
"./bot/index": {
|
|
77
|
+
"types": "./dist/bot/index.d.ts",
|
|
78
|
+
"bun": "./dist/bot/index.js",
|
|
79
|
+
"node": "./dist/node/bot/index.mjs",
|
|
80
|
+
"browser": "./dist/browser/bot/index.js",
|
|
81
|
+
"default": "./dist/bot/index.js"
|
|
82
|
+
},
|
|
83
|
+
"./bot/tools": {
|
|
84
|
+
"types": "./dist/bot/tools.d.ts",
|
|
85
|
+
"bun": "./dist/bot/tools.js",
|
|
86
|
+
"node": "./dist/node/bot/tools.mjs",
|
|
87
|
+
"browser": "./dist/browser/bot/tools.js",
|
|
88
|
+
"default": "./dist/bot/tools.js"
|
|
89
|
+
},
|
|
90
|
+
"./rag": {
|
|
91
|
+
"types": "./dist/rag/index.d.ts",
|
|
92
|
+
"bun": "./dist/rag/index.js",
|
|
93
|
+
"node": "./dist/node/rag/index.mjs",
|
|
94
|
+
"browser": "./dist/browser/rag/index.js",
|
|
95
|
+
"default": "./dist/rag/index.js"
|
|
96
|
+
},
|
|
97
|
+
"./rag/index": {
|
|
98
|
+
"types": "./dist/rag/index.d.ts",
|
|
99
|
+
"bun": "./dist/rag/index.js",
|
|
100
|
+
"node": "./dist/node/rag/index.mjs",
|
|
101
|
+
"browser": "./dist/browser/rag/index.js",
|
|
102
|
+
"default": "./dist/rag/index.js"
|
|
103
|
+
},
|
|
104
|
+
"./rag/ticket-resolver": {
|
|
105
|
+
"types": "./dist/rag/ticket-resolver.d.ts",
|
|
106
|
+
"bun": "./dist/rag/ticket-resolver.js",
|
|
107
|
+
"node": "./dist/node/rag/ticket-resolver.mjs",
|
|
108
|
+
"browser": "./dist/browser/rag/ticket-resolver.js",
|
|
109
|
+
"default": "./dist/rag/ticket-resolver.js"
|
|
110
|
+
},
|
|
111
|
+
"./spec": {
|
|
112
|
+
"types": "./dist/spec.d.ts",
|
|
113
|
+
"bun": "./dist/spec.js",
|
|
114
|
+
"node": "./dist/node/spec.mjs",
|
|
115
|
+
"browser": "./dist/browser/spec.js",
|
|
116
|
+
"default": "./dist/spec.js"
|
|
117
|
+
},
|
|
118
|
+
"./tickets": {
|
|
119
|
+
"types": "./dist/tickets/index.d.ts",
|
|
120
|
+
"bun": "./dist/tickets/index.js",
|
|
121
|
+
"node": "./dist/node/tickets/index.mjs",
|
|
122
|
+
"browser": "./dist/browser/tickets/index.js",
|
|
123
|
+
"default": "./dist/tickets/index.js"
|
|
124
|
+
},
|
|
125
|
+
"./tickets/classifier": {
|
|
126
|
+
"types": "./dist/tickets/classifier.d.ts",
|
|
127
|
+
"bun": "./dist/tickets/classifier.js",
|
|
128
|
+
"node": "./dist/node/tickets/classifier.mjs",
|
|
129
|
+
"browser": "./dist/browser/tickets/classifier.js",
|
|
130
|
+
"default": "./dist/tickets/classifier.js"
|
|
131
|
+
},
|
|
132
|
+
"./tickets/index": {
|
|
133
|
+
"types": "./dist/tickets/index.d.ts",
|
|
134
|
+
"bun": "./dist/tickets/index.js",
|
|
135
|
+
"node": "./dist/node/tickets/index.mjs",
|
|
136
|
+
"browser": "./dist/browser/tickets/index.js",
|
|
137
|
+
"default": "./dist/tickets/index.js"
|
|
138
|
+
},
|
|
139
|
+
"./types": {
|
|
140
|
+
"types": "./dist/types.d.ts",
|
|
141
|
+
"bun": "./dist/types.js",
|
|
142
|
+
"node": "./dist/node/types.mjs",
|
|
143
|
+
"browser": "./dist/browser/types.js",
|
|
144
|
+
"default": "./dist/types.js"
|
|
145
|
+
}
|
|
62
146
|
},
|
|
63
147
|
"publishConfig": {
|
|
64
148
|
"access": "public",
|