@contractspec/example.integration-hub 2.5.0 → 2.6.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/README.md +40 -0
- package/dist/docs/index.js +2 -0
- package/dist/docs/integration-hub.docblock.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +149 -0
- package/dist/mcp-example.d.ts +16 -0
- package/dist/mcp-example.js +151 -0
- package/dist/node/docs/index.js +2 -0
- package/dist/node/docs/integration-hub.docblock.js +2 -0
- package/dist/node/index.js +149 -0
- package/dist/node/mcp-example.js +150 -0
- package/dist/node/run-mcp.js +155 -0
- package/dist/run-mcp.d.ts +1 -0
- package/dist/run-mcp.js +156 -0
- package/package.json +34 -94
- package/dist/browser/connection/connection.enum.js +0 -12
- package/dist/browser/connection/connection.operation.js +0 -101
- package/dist/browser/connection/connection.presentation.js +0 -102
- package/dist/browser/connection/connection.schema.js +0 -48
- package/dist/browser/connection/index.js +0 -104
- package/dist/browser/docs/index.js +0 -104
- package/dist/browser/docs/integration-hub.docblock.js +0 -104
- package/dist/browser/events.js +0 -211
- package/dist/browser/example.js +0 -42
- package/dist/browser/handlers/index.js +0 -246
- package/dist/browser/handlers/integration.handlers.js +0 -246
- package/dist/browser/index.js +0 -1595
- package/dist/browser/integration/index.js +0 -92
- package/dist/browser/integration/integration.enum.js +0 -12
- package/dist/browser/integration/integration.operations.js +0 -89
- package/dist/browser/integration/integration.presentation.js +0 -120
- package/dist/browser/integration/integration.schema.js +0 -42
- package/dist/browser/integration-hub.capability.js +0 -43
- package/dist/browser/integration-hub.feature.js +0 -114
- package/dist/browser/seeders/index.js +0 -60
- package/dist/browser/sync/index.js +0 -332
- package/dist/browser/sync/sync.enum.js +0 -26
- package/dist/browser/sync/sync.operations.js +0 -321
- package/dist/browser/sync/sync.presentation.js +0 -301
- package/dist/browser/sync/sync.schema.js +0 -154
- package/dist/browser/sync-engine/index.js +0 -186
- package/dist/browser/tests/operations.test-spec.js +0 -85
- package/dist/browser/ui/IntegrationDashboard.js +0 -369
- package/dist/browser/ui/hooks/index.js +0 -57
- package/dist/browser/ui/hooks/useIntegrationData.js +0 -54
- package/dist/browser/ui/index.js +0 -644
- package/dist/browser/ui/renderers/index.js +0 -273
- package/dist/browser/ui/renderers/integration.markdown.js +0 -273
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.integration-hub",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "Integration Hub example with sync engine and field mappings for ContractSpec",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:bundle": "contractspec-bun-build transpile",
|
|
12
12
|
"build:types": "contractspec-bun-build types",
|
|
13
13
|
"dev": "contractspec-bun-build dev",
|
|
14
|
+
"run:mcp": "bun tsx src/run-mcp.ts",
|
|
14
15
|
"clean": "rimraf dist .turbo",
|
|
15
16
|
"lint": "bun lint:fix",
|
|
16
17
|
"lint:fix": "eslint src --fix",
|
|
@@ -20,321 +21,291 @@
|
|
|
20
21
|
"typecheck": "tsc --noEmit"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
|
-
"@contractspec/lib.
|
|
24
|
-
"@contractspec/lib.
|
|
25
|
-
"@contractspec/lib.
|
|
26
|
-
"@contractspec/lib.
|
|
27
|
-
"@contractspec/lib.
|
|
24
|
+
"@contractspec/lib.ai-agent": "2.6.0",
|
|
25
|
+
"@contractspec/lib.schema": "2.6.0",
|
|
26
|
+
"@contractspec/lib.contracts-spec": "2.6.0",
|
|
27
|
+
"@contractspec/lib.example-shared-ui": "2.6.1",
|
|
28
|
+
"@contractspec/lib.design-system": "2.6.1",
|
|
29
|
+
"@contractspec/lib.runtime-sandbox": "1.6.0",
|
|
28
30
|
"react": "19.2.4",
|
|
29
31
|
"react-dom": "19.2.4"
|
|
30
32
|
},
|
|
31
33
|
"devDependencies": {
|
|
32
|
-
"@contractspec/tool.typescript": "2.
|
|
34
|
+
"@contractspec/tool.typescript": "2.6.0",
|
|
33
35
|
"typescript": "^5.9.3",
|
|
34
36
|
"@types/react": "^19.2.14",
|
|
35
37
|
"@types/react-dom": "^19.2.2",
|
|
36
|
-
"@contractspec/tool.bun": "2.
|
|
38
|
+
"@contractspec/tool.bun": "2.6.0"
|
|
37
39
|
},
|
|
38
40
|
"exports": {
|
|
39
41
|
".": {
|
|
40
42
|
"types": "./dist/index.d.ts",
|
|
41
43
|
"bun": "./dist/index.js",
|
|
42
44
|
"node": "./dist/node/index.js",
|
|
43
|
-
"browser": "./dist/browser/index.js",
|
|
44
45
|
"default": "./dist/index.js"
|
|
45
46
|
},
|
|
46
47
|
"./connection": {
|
|
47
48
|
"types": "./dist/connection/index.d.ts",
|
|
48
49
|
"bun": "./dist/connection/index.js",
|
|
49
50
|
"node": "./dist/node/connection/index.js",
|
|
50
|
-
"browser": "./dist/browser/connection/index.js",
|
|
51
51
|
"default": "./dist/connection/index.js"
|
|
52
52
|
},
|
|
53
53
|
"./connection/connection.enum": {
|
|
54
54
|
"types": "./dist/connection/connection.enum.d.ts",
|
|
55
55
|
"bun": "./dist/connection/connection.enum.js",
|
|
56
56
|
"node": "./dist/node/connection/connection.enum.js",
|
|
57
|
-
"browser": "./dist/browser/connection/connection.enum.js",
|
|
58
57
|
"default": "./dist/connection/connection.enum.js"
|
|
59
58
|
},
|
|
60
59
|
"./connection/connection.operation": {
|
|
61
60
|
"types": "./dist/connection/connection.operation.d.ts",
|
|
62
61
|
"bun": "./dist/connection/connection.operation.js",
|
|
63
62
|
"node": "./dist/node/connection/connection.operation.js",
|
|
64
|
-
"browser": "./dist/browser/connection/connection.operation.js",
|
|
65
63
|
"default": "./dist/connection/connection.operation.js"
|
|
66
64
|
},
|
|
67
65
|
"./connection/connection.presentation": {
|
|
68
66
|
"types": "./dist/connection/connection.presentation.d.ts",
|
|
69
67
|
"bun": "./dist/connection/connection.presentation.js",
|
|
70
68
|
"node": "./dist/node/connection/connection.presentation.js",
|
|
71
|
-
"browser": "./dist/browser/connection/connection.presentation.js",
|
|
72
69
|
"default": "./dist/connection/connection.presentation.js"
|
|
73
70
|
},
|
|
74
71
|
"./connection/connection.schema": {
|
|
75
72
|
"types": "./dist/connection/connection.schema.d.ts",
|
|
76
73
|
"bun": "./dist/connection/connection.schema.js",
|
|
77
74
|
"node": "./dist/node/connection/connection.schema.js",
|
|
78
|
-
"browser": "./dist/browser/connection/connection.schema.js",
|
|
79
75
|
"default": "./dist/connection/connection.schema.js"
|
|
80
76
|
},
|
|
81
77
|
"./connection/index": {
|
|
82
78
|
"types": "./dist/connection/index.d.ts",
|
|
83
79
|
"bun": "./dist/connection/index.js",
|
|
84
80
|
"node": "./dist/node/connection/index.js",
|
|
85
|
-
"browser": "./dist/browser/connection/index.js",
|
|
86
81
|
"default": "./dist/connection/index.js"
|
|
87
82
|
},
|
|
88
83
|
"./docs": {
|
|
89
84
|
"types": "./dist/docs/index.d.ts",
|
|
90
85
|
"bun": "./dist/docs/index.js",
|
|
91
86
|
"node": "./dist/node/docs/index.js",
|
|
92
|
-
"browser": "./dist/browser/docs/index.js",
|
|
93
87
|
"default": "./dist/docs/index.js"
|
|
94
88
|
},
|
|
95
89
|
"./docs/index": {
|
|
96
90
|
"types": "./dist/docs/index.d.ts",
|
|
97
91
|
"bun": "./dist/docs/index.js",
|
|
98
92
|
"node": "./dist/node/docs/index.js",
|
|
99
|
-
"browser": "./dist/browser/docs/index.js",
|
|
100
93
|
"default": "./dist/docs/index.js"
|
|
101
94
|
},
|
|
102
95
|
"./docs/integration-hub.docblock": {
|
|
103
96
|
"types": "./dist/docs/integration-hub.docblock.d.ts",
|
|
104
97
|
"bun": "./dist/docs/integration-hub.docblock.js",
|
|
105
98
|
"node": "./dist/node/docs/integration-hub.docblock.js",
|
|
106
|
-
"browser": "./dist/browser/docs/integration-hub.docblock.js",
|
|
107
99
|
"default": "./dist/docs/integration-hub.docblock.js"
|
|
108
100
|
},
|
|
109
101
|
"./events": {
|
|
110
102
|
"types": "./dist/events.d.ts",
|
|
111
103
|
"bun": "./dist/events.js",
|
|
112
104
|
"node": "./dist/node/events.js",
|
|
113
|
-
"browser": "./dist/browser/events.js",
|
|
114
105
|
"default": "./dist/events.js"
|
|
115
106
|
},
|
|
116
107
|
"./example": {
|
|
117
108
|
"types": "./dist/example.d.ts",
|
|
118
109
|
"bun": "./dist/example.js",
|
|
119
110
|
"node": "./dist/node/example.js",
|
|
120
|
-
"browser": "./dist/browser/example.js",
|
|
121
111
|
"default": "./dist/example.js"
|
|
122
112
|
},
|
|
123
113
|
"./handlers": {
|
|
124
114
|
"types": "./dist/handlers/index.d.ts",
|
|
125
115
|
"bun": "./dist/handlers/index.js",
|
|
126
116
|
"node": "./dist/node/handlers/index.js",
|
|
127
|
-
"browser": "./dist/browser/handlers/index.js",
|
|
128
117
|
"default": "./dist/handlers/index.js"
|
|
129
118
|
},
|
|
130
119
|
"./handlers/index": {
|
|
131
120
|
"types": "./dist/handlers/index.d.ts",
|
|
132
121
|
"bun": "./dist/handlers/index.js",
|
|
133
122
|
"node": "./dist/node/handlers/index.js",
|
|
134
|
-
"browser": "./dist/browser/handlers/index.js",
|
|
135
123
|
"default": "./dist/handlers/index.js"
|
|
136
124
|
},
|
|
137
125
|
"./handlers/integration.handlers": {
|
|
138
126
|
"types": "./dist/handlers/integration.handlers.d.ts",
|
|
139
127
|
"bun": "./dist/handlers/integration.handlers.js",
|
|
140
128
|
"node": "./dist/node/handlers/integration.handlers.js",
|
|
141
|
-
"browser": "./dist/browser/handlers/integration.handlers.js",
|
|
142
129
|
"default": "./dist/handlers/integration.handlers.js"
|
|
143
130
|
},
|
|
144
131
|
"./integration": {
|
|
145
132
|
"types": "./dist/integration/index.d.ts",
|
|
146
133
|
"bun": "./dist/integration/index.js",
|
|
147
134
|
"node": "./dist/node/integration/index.js",
|
|
148
|
-
"browser": "./dist/browser/integration/index.js",
|
|
149
135
|
"default": "./dist/integration/index.js"
|
|
150
136
|
},
|
|
151
137
|
"./integration-hub.capability": {
|
|
152
138
|
"types": "./dist/integration-hub.capability.d.ts",
|
|
153
139
|
"bun": "./dist/integration-hub.capability.js",
|
|
154
140
|
"node": "./dist/node/integration-hub.capability.js",
|
|
155
|
-
"browser": "./dist/browser/integration-hub.capability.js",
|
|
156
141
|
"default": "./dist/integration-hub.capability.js"
|
|
157
142
|
},
|
|
158
143
|
"./integration-hub.feature": {
|
|
159
144
|
"types": "./dist/integration-hub.feature.d.ts",
|
|
160
145
|
"bun": "./dist/integration-hub.feature.js",
|
|
161
146
|
"node": "./dist/node/integration-hub.feature.js",
|
|
162
|
-
"browser": "./dist/browser/integration-hub.feature.js",
|
|
163
147
|
"default": "./dist/integration-hub.feature.js"
|
|
164
148
|
},
|
|
165
149
|
"./integration/index": {
|
|
166
150
|
"types": "./dist/integration/index.d.ts",
|
|
167
151
|
"bun": "./dist/integration/index.js",
|
|
168
152
|
"node": "./dist/node/integration/index.js",
|
|
169
|
-
"browser": "./dist/browser/integration/index.js",
|
|
170
153
|
"default": "./dist/integration/index.js"
|
|
171
154
|
},
|
|
172
155
|
"./integration/integration.enum": {
|
|
173
156
|
"types": "./dist/integration/integration.enum.d.ts",
|
|
174
157
|
"bun": "./dist/integration/integration.enum.js",
|
|
175
158
|
"node": "./dist/node/integration/integration.enum.js",
|
|
176
|
-
"browser": "./dist/browser/integration/integration.enum.js",
|
|
177
159
|
"default": "./dist/integration/integration.enum.js"
|
|
178
160
|
},
|
|
179
161
|
"./integration/integration.operations": {
|
|
180
162
|
"types": "./dist/integration/integration.operations.d.ts",
|
|
181
163
|
"bun": "./dist/integration/integration.operations.js",
|
|
182
164
|
"node": "./dist/node/integration/integration.operations.js",
|
|
183
|
-
"browser": "./dist/browser/integration/integration.operations.js",
|
|
184
165
|
"default": "./dist/integration/integration.operations.js"
|
|
185
166
|
},
|
|
186
167
|
"./integration/integration.presentation": {
|
|
187
168
|
"types": "./dist/integration/integration.presentation.d.ts",
|
|
188
169
|
"bun": "./dist/integration/integration.presentation.js",
|
|
189
170
|
"node": "./dist/node/integration/integration.presentation.js",
|
|
190
|
-
"browser": "./dist/browser/integration/integration.presentation.js",
|
|
191
171
|
"default": "./dist/integration/integration.presentation.js"
|
|
192
172
|
},
|
|
193
173
|
"./integration/integration.schema": {
|
|
194
174
|
"types": "./dist/integration/integration.schema.d.ts",
|
|
195
175
|
"bun": "./dist/integration/integration.schema.js",
|
|
196
176
|
"node": "./dist/node/integration/integration.schema.js",
|
|
197
|
-
"browser": "./dist/browser/integration/integration.schema.js",
|
|
198
177
|
"default": "./dist/integration/integration.schema.js"
|
|
199
178
|
},
|
|
179
|
+
"./mcp-example": {
|
|
180
|
+
"types": "./dist/mcp-example.d.ts",
|
|
181
|
+
"bun": "./dist/mcp-example.js",
|
|
182
|
+
"node": "./dist/node/mcp-example.js",
|
|
183
|
+
"default": "./dist/mcp-example.js"
|
|
184
|
+
},
|
|
185
|
+
"./run-mcp": {
|
|
186
|
+
"types": "./dist/run-mcp.d.ts",
|
|
187
|
+
"bun": "./dist/run-mcp.js",
|
|
188
|
+
"node": "./dist/node/run-mcp.js",
|
|
189
|
+
"default": "./dist/run-mcp.js"
|
|
190
|
+
},
|
|
200
191
|
"./seeders": {
|
|
201
192
|
"types": "./dist/seeders/index.d.ts",
|
|
202
193
|
"bun": "./dist/seeders/index.js",
|
|
203
194
|
"node": "./dist/node/seeders/index.js",
|
|
204
|
-
"browser": "./dist/browser/seeders/index.js",
|
|
205
195
|
"default": "./dist/seeders/index.js"
|
|
206
196
|
},
|
|
207
197
|
"./seeders/index": {
|
|
208
198
|
"types": "./dist/seeders/index.d.ts",
|
|
209
199
|
"bun": "./dist/seeders/index.js",
|
|
210
200
|
"node": "./dist/node/seeders/index.js",
|
|
211
|
-
"browser": "./dist/browser/seeders/index.js",
|
|
212
201
|
"default": "./dist/seeders/index.js"
|
|
213
202
|
},
|
|
214
203
|
"./sync": {
|
|
215
204
|
"types": "./dist/sync/index.d.ts",
|
|
216
205
|
"bun": "./dist/sync/index.js",
|
|
217
206
|
"node": "./dist/node/sync/index.js",
|
|
218
|
-
"browser": "./dist/browser/sync/index.js",
|
|
219
207
|
"default": "./dist/sync/index.js"
|
|
220
208
|
},
|
|
221
209
|
"./sync-engine": {
|
|
222
210
|
"types": "./dist/sync-engine/index.d.ts",
|
|
223
211
|
"bun": "./dist/sync-engine/index.js",
|
|
224
212
|
"node": "./dist/node/sync-engine/index.js",
|
|
225
|
-
"browser": "./dist/browser/sync-engine/index.js",
|
|
226
213
|
"default": "./dist/sync-engine/index.js"
|
|
227
214
|
},
|
|
228
215
|
"./sync-engine/index": {
|
|
229
216
|
"types": "./dist/sync-engine/index.d.ts",
|
|
230
217
|
"bun": "./dist/sync-engine/index.js",
|
|
231
218
|
"node": "./dist/node/sync-engine/index.js",
|
|
232
|
-
"browser": "./dist/browser/sync-engine/index.js",
|
|
233
219
|
"default": "./dist/sync-engine/index.js"
|
|
234
220
|
},
|
|
235
221
|
"./sync/index": {
|
|
236
222
|
"types": "./dist/sync/index.d.ts",
|
|
237
223
|
"bun": "./dist/sync/index.js",
|
|
238
224
|
"node": "./dist/node/sync/index.js",
|
|
239
|
-
"browser": "./dist/browser/sync/index.js",
|
|
240
225
|
"default": "./dist/sync/index.js"
|
|
241
226
|
},
|
|
242
227
|
"./sync/sync.enum": {
|
|
243
228
|
"types": "./dist/sync/sync.enum.d.ts",
|
|
244
229
|
"bun": "./dist/sync/sync.enum.js",
|
|
245
230
|
"node": "./dist/node/sync/sync.enum.js",
|
|
246
|
-
"browser": "./dist/browser/sync/sync.enum.js",
|
|
247
231
|
"default": "./dist/sync/sync.enum.js"
|
|
248
232
|
},
|
|
249
233
|
"./sync/sync.operations": {
|
|
250
234
|
"types": "./dist/sync/sync.operations.d.ts",
|
|
251
235
|
"bun": "./dist/sync/sync.operations.js",
|
|
252
236
|
"node": "./dist/node/sync/sync.operations.js",
|
|
253
|
-
"browser": "./dist/browser/sync/sync.operations.js",
|
|
254
237
|
"default": "./dist/sync/sync.operations.js"
|
|
255
238
|
},
|
|
256
239
|
"./sync/sync.presentation": {
|
|
257
240
|
"types": "./dist/sync/sync.presentation.d.ts",
|
|
258
241
|
"bun": "./dist/sync/sync.presentation.js",
|
|
259
242
|
"node": "./dist/node/sync/sync.presentation.js",
|
|
260
|
-
"browser": "./dist/browser/sync/sync.presentation.js",
|
|
261
243
|
"default": "./dist/sync/sync.presentation.js"
|
|
262
244
|
},
|
|
263
245
|
"./sync/sync.schema": {
|
|
264
246
|
"types": "./dist/sync/sync.schema.d.ts",
|
|
265
247
|
"bun": "./dist/sync/sync.schema.js",
|
|
266
248
|
"node": "./dist/node/sync/sync.schema.js",
|
|
267
|
-
"browser": "./dist/browser/sync/sync.schema.js",
|
|
268
249
|
"default": "./dist/sync/sync.schema.js"
|
|
269
250
|
},
|
|
270
251
|
"./tests/operations.test-spec": {
|
|
271
252
|
"types": "./dist/tests/operations.test-spec.d.ts",
|
|
272
253
|
"bun": "./dist/tests/operations.test-spec.js",
|
|
273
254
|
"node": "./dist/node/tests/operations.test-spec.js",
|
|
274
|
-
"browser": "./dist/browser/tests/operations.test-spec.js",
|
|
275
255
|
"default": "./dist/tests/operations.test-spec.js"
|
|
276
256
|
},
|
|
277
257
|
"./ui": {
|
|
278
258
|
"types": "./dist/ui/index.d.ts",
|
|
279
259
|
"bun": "./dist/ui/index.js",
|
|
280
260
|
"node": "./dist/node/ui/index.js",
|
|
281
|
-
"browser": "./dist/browser/ui/index.js",
|
|
282
261
|
"default": "./dist/ui/index.js"
|
|
283
262
|
},
|
|
284
263
|
"./ui/hooks": {
|
|
285
264
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
286
265
|
"bun": "./dist/ui/hooks/index.js",
|
|
287
266
|
"node": "./dist/node/ui/hooks/index.js",
|
|
288
|
-
"browser": "./dist/browser/ui/hooks/index.js",
|
|
289
267
|
"default": "./dist/ui/hooks/index.js"
|
|
290
268
|
},
|
|
291
269
|
"./ui/hooks/index": {
|
|
292
270
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
293
271
|
"bun": "./dist/ui/hooks/index.js",
|
|
294
272
|
"node": "./dist/node/ui/hooks/index.js",
|
|
295
|
-
"browser": "./dist/browser/ui/hooks/index.js",
|
|
296
273
|
"default": "./dist/ui/hooks/index.js"
|
|
297
274
|
},
|
|
298
275
|
"./ui/hooks/useIntegrationData": {
|
|
299
276
|
"types": "./dist/ui/hooks/useIntegrationData.d.ts",
|
|
300
277
|
"bun": "./dist/ui/hooks/useIntegrationData.js",
|
|
301
278
|
"node": "./dist/node/ui/hooks/useIntegrationData.js",
|
|
302
|
-
"browser": "./dist/browser/ui/hooks/useIntegrationData.js",
|
|
303
279
|
"default": "./dist/ui/hooks/useIntegrationData.js"
|
|
304
280
|
},
|
|
305
281
|
"./ui/index": {
|
|
306
282
|
"types": "./dist/ui/index.d.ts",
|
|
307
283
|
"bun": "./dist/ui/index.js",
|
|
308
284
|
"node": "./dist/node/ui/index.js",
|
|
309
|
-
"browser": "./dist/browser/ui/index.js",
|
|
310
285
|
"default": "./dist/ui/index.js"
|
|
311
286
|
},
|
|
312
287
|
"./ui/IntegrationDashboard": {
|
|
313
288
|
"types": "./dist/ui/IntegrationDashboard.d.ts",
|
|
314
289
|
"bun": "./dist/ui/IntegrationDashboard.js",
|
|
315
290
|
"node": "./dist/node/ui/IntegrationDashboard.js",
|
|
316
|
-
"browser": "./dist/browser/ui/IntegrationDashboard.js",
|
|
317
291
|
"default": "./dist/ui/IntegrationDashboard.js"
|
|
318
292
|
},
|
|
319
293
|
"./ui/renderers": {
|
|
320
294
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
321
295
|
"bun": "./dist/ui/renderers/index.js",
|
|
322
296
|
"node": "./dist/node/ui/renderers/index.js",
|
|
323
|
-
"browser": "./dist/browser/ui/renderers/index.js",
|
|
324
297
|
"default": "./dist/ui/renderers/index.js"
|
|
325
298
|
},
|
|
326
299
|
"./ui/renderers/index": {
|
|
327
300
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
328
301
|
"bun": "./dist/ui/renderers/index.js",
|
|
329
302
|
"node": "./dist/node/ui/renderers/index.js",
|
|
330
|
-
"browser": "./dist/browser/ui/renderers/index.js",
|
|
331
303
|
"default": "./dist/ui/renderers/index.js"
|
|
332
304
|
},
|
|
333
305
|
"./ui/renderers/integration.markdown": {
|
|
334
306
|
"types": "./dist/ui/renderers/integration.markdown.d.ts",
|
|
335
307
|
"bun": "./dist/ui/renderers/integration.markdown.js",
|
|
336
308
|
"node": "./dist/node/ui/renderers/integration.markdown.js",
|
|
337
|
-
"browser": "./dist/browser/ui/renderers/integration.markdown.js",
|
|
338
309
|
"default": "./dist/ui/renderers/integration.markdown.js"
|
|
339
310
|
}
|
|
340
311
|
},
|
|
@@ -349,301 +320,270 @@
|
|
|
349
320
|
"types": "./dist/index.d.ts",
|
|
350
321
|
"bun": "./dist/index.js",
|
|
351
322
|
"node": "./dist/node/index.js",
|
|
352
|
-
"browser": "./dist/browser/index.js",
|
|
353
323
|
"default": "./dist/index.js"
|
|
354
324
|
},
|
|
355
325
|
"./connection": {
|
|
356
326
|
"types": "./dist/connection/index.d.ts",
|
|
357
327
|
"bun": "./dist/connection/index.js",
|
|
358
328
|
"node": "./dist/node/connection/index.js",
|
|
359
|
-
"browser": "./dist/browser/connection/index.js",
|
|
360
329
|
"default": "./dist/connection/index.js"
|
|
361
330
|
},
|
|
362
331
|
"./connection/connection.enum": {
|
|
363
332
|
"types": "./dist/connection/connection.enum.d.ts",
|
|
364
333
|
"bun": "./dist/connection/connection.enum.js",
|
|
365
334
|
"node": "./dist/node/connection/connection.enum.js",
|
|
366
|
-
"browser": "./dist/browser/connection/connection.enum.js",
|
|
367
335
|
"default": "./dist/connection/connection.enum.js"
|
|
368
336
|
},
|
|
369
337
|
"./connection/connection.operation": {
|
|
370
338
|
"types": "./dist/connection/connection.operation.d.ts",
|
|
371
339
|
"bun": "./dist/connection/connection.operation.js",
|
|
372
340
|
"node": "./dist/node/connection/connection.operation.js",
|
|
373
|
-
"browser": "./dist/browser/connection/connection.operation.js",
|
|
374
341
|
"default": "./dist/connection/connection.operation.js"
|
|
375
342
|
},
|
|
376
343
|
"./connection/connection.presentation": {
|
|
377
344
|
"types": "./dist/connection/connection.presentation.d.ts",
|
|
378
345
|
"bun": "./dist/connection/connection.presentation.js",
|
|
379
346
|
"node": "./dist/node/connection/connection.presentation.js",
|
|
380
|
-
"browser": "./dist/browser/connection/connection.presentation.js",
|
|
381
347
|
"default": "./dist/connection/connection.presentation.js"
|
|
382
348
|
},
|
|
383
349
|
"./connection/connection.schema": {
|
|
384
350
|
"types": "./dist/connection/connection.schema.d.ts",
|
|
385
351
|
"bun": "./dist/connection/connection.schema.js",
|
|
386
352
|
"node": "./dist/node/connection/connection.schema.js",
|
|
387
|
-
"browser": "./dist/browser/connection/connection.schema.js",
|
|
388
353
|
"default": "./dist/connection/connection.schema.js"
|
|
389
354
|
},
|
|
390
355
|
"./connection/index": {
|
|
391
356
|
"types": "./dist/connection/index.d.ts",
|
|
392
357
|
"bun": "./dist/connection/index.js",
|
|
393
358
|
"node": "./dist/node/connection/index.js",
|
|
394
|
-
"browser": "./dist/browser/connection/index.js",
|
|
395
359
|
"default": "./dist/connection/index.js"
|
|
396
360
|
},
|
|
397
361
|
"./docs": {
|
|
398
362
|
"types": "./dist/docs/index.d.ts",
|
|
399
363
|
"bun": "./dist/docs/index.js",
|
|
400
364
|
"node": "./dist/node/docs/index.js",
|
|
401
|
-
"browser": "./dist/browser/docs/index.js",
|
|
402
365
|
"default": "./dist/docs/index.js"
|
|
403
366
|
},
|
|
404
367
|
"./docs/index": {
|
|
405
368
|
"types": "./dist/docs/index.d.ts",
|
|
406
369
|
"bun": "./dist/docs/index.js",
|
|
407
370
|
"node": "./dist/node/docs/index.js",
|
|
408
|
-
"browser": "./dist/browser/docs/index.js",
|
|
409
371
|
"default": "./dist/docs/index.js"
|
|
410
372
|
},
|
|
411
373
|
"./docs/integration-hub.docblock": {
|
|
412
374
|
"types": "./dist/docs/integration-hub.docblock.d.ts",
|
|
413
375
|
"bun": "./dist/docs/integration-hub.docblock.js",
|
|
414
376
|
"node": "./dist/node/docs/integration-hub.docblock.js",
|
|
415
|
-
"browser": "./dist/browser/docs/integration-hub.docblock.js",
|
|
416
377
|
"default": "./dist/docs/integration-hub.docblock.js"
|
|
417
378
|
},
|
|
418
379
|
"./events": {
|
|
419
380
|
"types": "./dist/events.d.ts",
|
|
420
381
|
"bun": "./dist/events.js",
|
|
421
382
|
"node": "./dist/node/events.js",
|
|
422
|
-
"browser": "./dist/browser/events.js",
|
|
423
383
|
"default": "./dist/events.js"
|
|
424
384
|
},
|
|
425
385
|
"./example": {
|
|
426
386
|
"types": "./dist/example.d.ts",
|
|
427
387
|
"bun": "./dist/example.js",
|
|
428
388
|
"node": "./dist/node/example.js",
|
|
429
|
-
"browser": "./dist/browser/example.js",
|
|
430
389
|
"default": "./dist/example.js"
|
|
431
390
|
},
|
|
432
391
|
"./handlers": {
|
|
433
392
|
"types": "./dist/handlers/index.d.ts",
|
|
434
393
|
"bun": "./dist/handlers/index.js",
|
|
435
394
|
"node": "./dist/node/handlers/index.js",
|
|
436
|
-
"browser": "./dist/browser/handlers/index.js",
|
|
437
395
|
"default": "./dist/handlers/index.js"
|
|
438
396
|
},
|
|
439
397
|
"./handlers/index": {
|
|
440
398
|
"types": "./dist/handlers/index.d.ts",
|
|
441
399
|
"bun": "./dist/handlers/index.js",
|
|
442
400
|
"node": "./dist/node/handlers/index.js",
|
|
443
|
-
"browser": "./dist/browser/handlers/index.js",
|
|
444
401
|
"default": "./dist/handlers/index.js"
|
|
445
402
|
},
|
|
446
403
|
"./handlers/integration.handlers": {
|
|
447
404
|
"types": "./dist/handlers/integration.handlers.d.ts",
|
|
448
405
|
"bun": "./dist/handlers/integration.handlers.js",
|
|
449
406
|
"node": "./dist/node/handlers/integration.handlers.js",
|
|
450
|
-
"browser": "./dist/browser/handlers/integration.handlers.js",
|
|
451
407
|
"default": "./dist/handlers/integration.handlers.js"
|
|
452
408
|
},
|
|
453
409
|
"./integration": {
|
|
454
410
|
"types": "./dist/integration/index.d.ts",
|
|
455
411
|
"bun": "./dist/integration/index.js",
|
|
456
412
|
"node": "./dist/node/integration/index.js",
|
|
457
|
-
"browser": "./dist/browser/integration/index.js",
|
|
458
413
|
"default": "./dist/integration/index.js"
|
|
459
414
|
},
|
|
460
415
|
"./integration-hub.capability": {
|
|
461
416
|
"types": "./dist/integration-hub.capability.d.ts",
|
|
462
417
|
"bun": "./dist/integration-hub.capability.js",
|
|
463
418
|
"node": "./dist/node/integration-hub.capability.js",
|
|
464
|
-
"browser": "./dist/browser/integration-hub.capability.js",
|
|
465
419
|
"default": "./dist/integration-hub.capability.js"
|
|
466
420
|
},
|
|
467
421
|
"./integration-hub.feature": {
|
|
468
422
|
"types": "./dist/integration-hub.feature.d.ts",
|
|
469
423
|
"bun": "./dist/integration-hub.feature.js",
|
|
470
424
|
"node": "./dist/node/integration-hub.feature.js",
|
|
471
|
-
"browser": "./dist/browser/integration-hub.feature.js",
|
|
472
425
|
"default": "./dist/integration-hub.feature.js"
|
|
473
426
|
},
|
|
474
427
|
"./integration/index": {
|
|
475
428
|
"types": "./dist/integration/index.d.ts",
|
|
476
429
|
"bun": "./dist/integration/index.js",
|
|
477
430
|
"node": "./dist/node/integration/index.js",
|
|
478
|
-
"browser": "./dist/browser/integration/index.js",
|
|
479
431
|
"default": "./dist/integration/index.js"
|
|
480
432
|
},
|
|
481
433
|
"./integration/integration.enum": {
|
|
482
434
|
"types": "./dist/integration/integration.enum.d.ts",
|
|
483
435
|
"bun": "./dist/integration/integration.enum.js",
|
|
484
436
|
"node": "./dist/node/integration/integration.enum.js",
|
|
485
|
-
"browser": "./dist/browser/integration/integration.enum.js",
|
|
486
437
|
"default": "./dist/integration/integration.enum.js"
|
|
487
438
|
},
|
|
488
439
|
"./integration/integration.operations": {
|
|
489
440
|
"types": "./dist/integration/integration.operations.d.ts",
|
|
490
441
|
"bun": "./dist/integration/integration.operations.js",
|
|
491
442
|
"node": "./dist/node/integration/integration.operations.js",
|
|
492
|
-
"browser": "./dist/browser/integration/integration.operations.js",
|
|
493
443
|
"default": "./dist/integration/integration.operations.js"
|
|
494
444
|
},
|
|
495
445
|
"./integration/integration.presentation": {
|
|
496
446
|
"types": "./dist/integration/integration.presentation.d.ts",
|
|
497
447
|
"bun": "./dist/integration/integration.presentation.js",
|
|
498
448
|
"node": "./dist/node/integration/integration.presentation.js",
|
|
499
|
-
"browser": "./dist/browser/integration/integration.presentation.js",
|
|
500
449
|
"default": "./dist/integration/integration.presentation.js"
|
|
501
450
|
},
|
|
502
451
|
"./integration/integration.schema": {
|
|
503
452
|
"types": "./dist/integration/integration.schema.d.ts",
|
|
504
453
|
"bun": "./dist/integration/integration.schema.js",
|
|
505
454
|
"node": "./dist/node/integration/integration.schema.js",
|
|
506
|
-
"browser": "./dist/browser/integration/integration.schema.js",
|
|
507
455
|
"default": "./dist/integration/integration.schema.js"
|
|
508
456
|
},
|
|
457
|
+
"./mcp-example": {
|
|
458
|
+
"types": "./dist/mcp-example.d.ts",
|
|
459
|
+
"bun": "./dist/mcp-example.js",
|
|
460
|
+
"node": "./dist/node/mcp-example.js",
|
|
461
|
+
"default": "./dist/mcp-example.js"
|
|
462
|
+
},
|
|
463
|
+
"./run-mcp": {
|
|
464
|
+
"types": "./dist/run-mcp.d.ts",
|
|
465
|
+
"bun": "./dist/run-mcp.js",
|
|
466
|
+
"node": "./dist/node/run-mcp.js",
|
|
467
|
+
"default": "./dist/run-mcp.js"
|
|
468
|
+
},
|
|
509
469
|
"./seeders": {
|
|
510
470
|
"types": "./dist/seeders/index.d.ts",
|
|
511
471
|
"bun": "./dist/seeders/index.js",
|
|
512
472
|
"node": "./dist/node/seeders/index.js",
|
|
513
|
-
"browser": "./dist/browser/seeders/index.js",
|
|
514
473
|
"default": "./dist/seeders/index.js"
|
|
515
474
|
},
|
|
516
475
|
"./seeders/index": {
|
|
517
476
|
"types": "./dist/seeders/index.d.ts",
|
|
518
477
|
"bun": "./dist/seeders/index.js",
|
|
519
478
|
"node": "./dist/node/seeders/index.js",
|
|
520
|
-
"browser": "./dist/browser/seeders/index.js",
|
|
521
479
|
"default": "./dist/seeders/index.js"
|
|
522
480
|
},
|
|
523
481
|
"./sync": {
|
|
524
482
|
"types": "./dist/sync/index.d.ts",
|
|
525
483
|
"bun": "./dist/sync/index.js",
|
|
526
484
|
"node": "./dist/node/sync/index.js",
|
|
527
|
-
"browser": "./dist/browser/sync/index.js",
|
|
528
485
|
"default": "./dist/sync/index.js"
|
|
529
486
|
},
|
|
530
487
|
"./sync-engine": {
|
|
531
488
|
"types": "./dist/sync-engine/index.d.ts",
|
|
532
489
|
"bun": "./dist/sync-engine/index.js",
|
|
533
490
|
"node": "./dist/node/sync-engine/index.js",
|
|
534
|
-
"browser": "./dist/browser/sync-engine/index.js",
|
|
535
491
|
"default": "./dist/sync-engine/index.js"
|
|
536
492
|
},
|
|
537
493
|
"./sync-engine/index": {
|
|
538
494
|
"types": "./dist/sync-engine/index.d.ts",
|
|
539
495
|
"bun": "./dist/sync-engine/index.js",
|
|
540
496
|
"node": "./dist/node/sync-engine/index.js",
|
|
541
|
-
"browser": "./dist/browser/sync-engine/index.js",
|
|
542
497
|
"default": "./dist/sync-engine/index.js"
|
|
543
498
|
},
|
|
544
499
|
"./sync/index": {
|
|
545
500
|
"types": "./dist/sync/index.d.ts",
|
|
546
501
|
"bun": "./dist/sync/index.js",
|
|
547
502
|
"node": "./dist/node/sync/index.js",
|
|
548
|
-
"browser": "./dist/browser/sync/index.js",
|
|
549
503
|
"default": "./dist/sync/index.js"
|
|
550
504
|
},
|
|
551
505
|
"./sync/sync.enum": {
|
|
552
506
|
"types": "./dist/sync/sync.enum.d.ts",
|
|
553
507
|
"bun": "./dist/sync/sync.enum.js",
|
|
554
508
|
"node": "./dist/node/sync/sync.enum.js",
|
|
555
|
-
"browser": "./dist/browser/sync/sync.enum.js",
|
|
556
509
|
"default": "./dist/sync/sync.enum.js"
|
|
557
510
|
},
|
|
558
511
|
"./sync/sync.operations": {
|
|
559
512
|
"types": "./dist/sync/sync.operations.d.ts",
|
|
560
513
|
"bun": "./dist/sync/sync.operations.js",
|
|
561
514
|
"node": "./dist/node/sync/sync.operations.js",
|
|
562
|
-
"browser": "./dist/browser/sync/sync.operations.js",
|
|
563
515
|
"default": "./dist/sync/sync.operations.js"
|
|
564
516
|
},
|
|
565
517
|
"./sync/sync.presentation": {
|
|
566
518
|
"types": "./dist/sync/sync.presentation.d.ts",
|
|
567
519
|
"bun": "./dist/sync/sync.presentation.js",
|
|
568
520
|
"node": "./dist/node/sync/sync.presentation.js",
|
|
569
|
-
"browser": "./dist/browser/sync/sync.presentation.js",
|
|
570
521
|
"default": "./dist/sync/sync.presentation.js"
|
|
571
522
|
},
|
|
572
523
|
"./sync/sync.schema": {
|
|
573
524
|
"types": "./dist/sync/sync.schema.d.ts",
|
|
574
525
|
"bun": "./dist/sync/sync.schema.js",
|
|
575
526
|
"node": "./dist/node/sync/sync.schema.js",
|
|
576
|
-
"browser": "./dist/browser/sync/sync.schema.js",
|
|
577
527
|
"default": "./dist/sync/sync.schema.js"
|
|
578
528
|
},
|
|
579
529
|
"./tests/operations.test-spec": {
|
|
580
530
|
"types": "./dist/tests/operations.test-spec.d.ts",
|
|
581
531
|
"bun": "./dist/tests/operations.test-spec.js",
|
|
582
532
|
"node": "./dist/node/tests/operations.test-spec.js",
|
|
583
|
-
"browser": "./dist/browser/tests/operations.test-spec.js",
|
|
584
533
|
"default": "./dist/tests/operations.test-spec.js"
|
|
585
534
|
},
|
|
586
535
|
"./ui": {
|
|
587
536
|
"types": "./dist/ui/index.d.ts",
|
|
588
537
|
"bun": "./dist/ui/index.js",
|
|
589
538
|
"node": "./dist/node/ui/index.js",
|
|
590
|
-
"browser": "./dist/browser/ui/index.js",
|
|
591
539
|
"default": "./dist/ui/index.js"
|
|
592
540
|
},
|
|
593
541
|
"./ui/hooks": {
|
|
594
542
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
595
543
|
"bun": "./dist/ui/hooks/index.js",
|
|
596
544
|
"node": "./dist/node/ui/hooks/index.js",
|
|
597
|
-
"browser": "./dist/browser/ui/hooks/index.js",
|
|
598
545
|
"default": "./dist/ui/hooks/index.js"
|
|
599
546
|
},
|
|
600
547
|
"./ui/hooks/index": {
|
|
601
548
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
602
549
|
"bun": "./dist/ui/hooks/index.js",
|
|
603
550
|
"node": "./dist/node/ui/hooks/index.js",
|
|
604
|
-
"browser": "./dist/browser/ui/hooks/index.js",
|
|
605
551
|
"default": "./dist/ui/hooks/index.js"
|
|
606
552
|
},
|
|
607
553
|
"./ui/hooks/useIntegrationData": {
|
|
608
554
|
"types": "./dist/ui/hooks/useIntegrationData.d.ts",
|
|
609
555
|
"bun": "./dist/ui/hooks/useIntegrationData.js",
|
|
610
556
|
"node": "./dist/node/ui/hooks/useIntegrationData.js",
|
|
611
|
-
"browser": "./dist/browser/ui/hooks/useIntegrationData.js",
|
|
612
557
|
"default": "./dist/ui/hooks/useIntegrationData.js"
|
|
613
558
|
},
|
|
614
559
|
"./ui/index": {
|
|
615
560
|
"types": "./dist/ui/index.d.ts",
|
|
616
561
|
"bun": "./dist/ui/index.js",
|
|
617
562
|
"node": "./dist/node/ui/index.js",
|
|
618
|
-
"browser": "./dist/browser/ui/index.js",
|
|
619
563
|
"default": "./dist/ui/index.js"
|
|
620
564
|
},
|
|
621
565
|
"./ui/IntegrationDashboard": {
|
|
622
566
|
"types": "./dist/ui/IntegrationDashboard.d.ts",
|
|
623
567
|
"bun": "./dist/ui/IntegrationDashboard.js",
|
|
624
568
|
"node": "./dist/node/ui/IntegrationDashboard.js",
|
|
625
|
-
"browser": "./dist/browser/ui/IntegrationDashboard.js",
|
|
626
569
|
"default": "./dist/ui/IntegrationDashboard.js"
|
|
627
570
|
},
|
|
628
571
|
"./ui/renderers": {
|
|
629
572
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
630
573
|
"bun": "./dist/ui/renderers/index.js",
|
|
631
574
|
"node": "./dist/node/ui/renderers/index.js",
|
|
632
|
-
"browser": "./dist/browser/ui/renderers/index.js",
|
|
633
575
|
"default": "./dist/ui/renderers/index.js"
|
|
634
576
|
},
|
|
635
577
|
"./ui/renderers/index": {
|
|
636
578
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
637
579
|
"bun": "./dist/ui/renderers/index.js",
|
|
638
580
|
"node": "./dist/node/ui/renderers/index.js",
|
|
639
|
-
"browser": "./dist/browser/ui/renderers/index.js",
|
|
640
581
|
"default": "./dist/ui/renderers/index.js"
|
|
641
582
|
},
|
|
642
583
|
"./ui/renderers/integration.markdown": {
|
|
643
584
|
"types": "./dist/ui/renderers/integration.markdown.d.ts",
|
|
644
585
|
"bun": "./dist/ui/renderers/integration.markdown.js",
|
|
645
586
|
"node": "./dist/node/ui/renderers/integration.markdown.js",
|
|
646
|
-
"browser": "./dist/browser/ui/renderers/integration.markdown.js",
|
|
647
587
|
"default": "./dist/ui/renderers/integration.markdown.js"
|
|
648
588
|
}
|
|
649
589
|
},
|