@contractspec/example.integration-hub 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 +309 -51
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.integration-hub",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
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",
|
|
@@ -20,65 +20,323 @@
|
|
|
20
20
|
"typecheck": "tsc --noEmit"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@contractspec/lib.schema": "1.
|
|
24
|
-
"@contractspec/lib.contracts": "1.
|
|
25
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
26
|
-
"@contractspec/lib.design-system": "1.
|
|
27
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
23
|
+
"@contractspec/lib.schema": "1.60.0",
|
|
24
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
25
|
+
"@contractspec/lib.example-shared-ui": "1.14.0",
|
|
26
|
+
"@contractspec/lib.design-system": "1.60.0",
|
|
27
|
+
"@contractspec/lib.runtime-sandbox": "0.15.0",
|
|
28
28
|
"react": "19.2.4",
|
|
29
29
|
"react-dom": "19.2.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@contractspec/tool.typescript": "1.
|
|
32
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
33
33
|
"typescript": "^5.9.3",
|
|
34
34
|
"@types/react": "^19.2.13",
|
|
35
35
|
"@types/react-dom": "^19.2.2",
|
|
36
|
-
"@contractspec/tool.bun": "1.
|
|
36
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
37
37
|
},
|
|
38
38
|
"exports": {
|
|
39
|
-
".":
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"./
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"./
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"./
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"./
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"./
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
"./
|
|
39
|
+
".": {
|
|
40
|
+
"types": "./dist/index.d.ts",
|
|
41
|
+
"bun": "./dist/index.js",
|
|
42
|
+
"node": "./dist/node/index.mjs",
|
|
43
|
+
"browser": "./dist/browser/index.js",
|
|
44
|
+
"default": "./dist/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./connection": {
|
|
47
|
+
"types": "./dist/connection/index.d.ts",
|
|
48
|
+
"bun": "./dist/connection/index.js",
|
|
49
|
+
"node": "./dist/node/connection/index.mjs",
|
|
50
|
+
"browser": "./dist/browser/connection/index.js",
|
|
51
|
+
"default": "./dist/connection/index.js"
|
|
52
|
+
},
|
|
53
|
+
"./connection/connection.enum": {
|
|
54
|
+
"types": "./dist/connection/connection.enum.d.ts",
|
|
55
|
+
"bun": "./dist/connection/connection.enum.js",
|
|
56
|
+
"node": "./dist/node/connection/connection.enum.mjs",
|
|
57
|
+
"browser": "./dist/browser/connection/connection.enum.js",
|
|
58
|
+
"default": "./dist/connection/connection.enum.js"
|
|
59
|
+
},
|
|
60
|
+
"./connection/connection.operation": {
|
|
61
|
+
"types": "./dist/connection/connection.operation.d.ts",
|
|
62
|
+
"bun": "./dist/connection/connection.operation.js",
|
|
63
|
+
"node": "./dist/node/connection/connection.operation.mjs",
|
|
64
|
+
"browser": "./dist/browser/connection/connection.operation.js",
|
|
65
|
+
"default": "./dist/connection/connection.operation.js"
|
|
66
|
+
},
|
|
67
|
+
"./connection/connection.presentation": {
|
|
68
|
+
"types": "./dist/connection/connection.presentation.d.ts",
|
|
69
|
+
"bun": "./dist/connection/connection.presentation.js",
|
|
70
|
+
"node": "./dist/node/connection/connection.presentation.mjs",
|
|
71
|
+
"browser": "./dist/browser/connection/connection.presentation.js",
|
|
72
|
+
"default": "./dist/connection/connection.presentation.js"
|
|
73
|
+
},
|
|
74
|
+
"./connection/connection.schema": {
|
|
75
|
+
"types": "./dist/connection/connection.schema.d.ts",
|
|
76
|
+
"bun": "./dist/connection/connection.schema.js",
|
|
77
|
+
"node": "./dist/node/connection/connection.schema.mjs",
|
|
78
|
+
"browser": "./dist/browser/connection/connection.schema.js",
|
|
79
|
+
"default": "./dist/connection/connection.schema.js"
|
|
80
|
+
},
|
|
81
|
+
"./connection/index": {
|
|
82
|
+
"types": "./dist/connection/index.d.ts",
|
|
83
|
+
"bun": "./dist/connection/index.js",
|
|
84
|
+
"node": "./dist/node/connection/index.mjs",
|
|
85
|
+
"browser": "./dist/browser/connection/index.js",
|
|
86
|
+
"default": "./dist/connection/index.js"
|
|
87
|
+
},
|
|
88
|
+
"./docs": {
|
|
89
|
+
"types": "./dist/docs/index.d.ts",
|
|
90
|
+
"bun": "./dist/docs/index.js",
|
|
91
|
+
"node": "./dist/node/docs/index.mjs",
|
|
92
|
+
"browser": "./dist/browser/docs/index.js",
|
|
93
|
+
"default": "./dist/docs/index.js"
|
|
94
|
+
},
|
|
95
|
+
"./docs/index": {
|
|
96
|
+
"types": "./dist/docs/index.d.ts",
|
|
97
|
+
"bun": "./dist/docs/index.js",
|
|
98
|
+
"node": "./dist/node/docs/index.mjs",
|
|
99
|
+
"browser": "./dist/browser/docs/index.js",
|
|
100
|
+
"default": "./dist/docs/index.js"
|
|
101
|
+
},
|
|
102
|
+
"./docs/integration-hub.docblock": {
|
|
103
|
+
"types": "./dist/docs/integration-hub.docblock.d.ts",
|
|
104
|
+
"bun": "./dist/docs/integration-hub.docblock.js",
|
|
105
|
+
"node": "./dist/node/docs/integration-hub.docblock.mjs",
|
|
106
|
+
"browser": "./dist/browser/docs/integration-hub.docblock.js",
|
|
107
|
+
"default": "./dist/docs/integration-hub.docblock.js"
|
|
108
|
+
},
|
|
109
|
+
"./events": {
|
|
110
|
+
"types": "./dist/events.d.ts",
|
|
111
|
+
"bun": "./dist/events.js",
|
|
112
|
+
"node": "./dist/node/events.mjs",
|
|
113
|
+
"browser": "./dist/browser/events.js",
|
|
114
|
+
"default": "./dist/events.js"
|
|
115
|
+
},
|
|
116
|
+
"./example": {
|
|
117
|
+
"types": "./dist/example.d.ts",
|
|
118
|
+
"bun": "./dist/example.js",
|
|
119
|
+
"node": "./dist/node/example.mjs",
|
|
120
|
+
"browser": "./dist/browser/example.js",
|
|
121
|
+
"default": "./dist/example.js"
|
|
122
|
+
},
|
|
123
|
+
"./handlers": {
|
|
124
|
+
"types": "./dist/handlers/index.d.ts",
|
|
125
|
+
"bun": "./dist/handlers/index.js",
|
|
126
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
127
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
128
|
+
"default": "./dist/handlers/index.js"
|
|
129
|
+
},
|
|
130
|
+
"./handlers/index": {
|
|
131
|
+
"types": "./dist/handlers/index.d.ts",
|
|
132
|
+
"bun": "./dist/handlers/index.js",
|
|
133
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
134
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
135
|
+
"default": "./dist/handlers/index.js"
|
|
136
|
+
},
|
|
137
|
+
"./handlers/integration.handlers": {
|
|
138
|
+
"types": "./dist/handlers/integration.handlers.d.ts",
|
|
139
|
+
"bun": "./dist/handlers/integration.handlers.js",
|
|
140
|
+
"node": "./dist/node/handlers/integration.handlers.mjs",
|
|
141
|
+
"browser": "./dist/browser/handlers/integration.handlers.js",
|
|
142
|
+
"default": "./dist/handlers/integration.handlers.js"
|
|
143
|
+
},
|
|
144
|
+
"./integration": {
|
|
145
|
+
"types": "./dist/integration/index.d.ts",
|
|
146
|
+
"bun": "./dist/integration/index.js",
|
|
147
|
+
"node": "./dist/node/integration/index.mjs",
|
|
148
|
+
"browser": "./dist/browser/integration/index.js",
|
|
149
|
+
"default": "./dist/integration/index.js"
|
|
150
|
+
},
|
|
151
|
+
"./integration-hub.capability": {
|
|
152
|
+
"types": "./dist/integration-hub.capability.d.ts",
|
|
153
|
+
"bun": "./dist/integration-hub.capability.js",
|
|
154
|
+
"node": "./dist/node/integration-hub.capability.mjs",
|
|
155
|
+
"browser": "./dist/browser/integration-hub.capability.js",
|
|
156
|
+
"default": "./dist/integration-hub.capability.js"
|
|
157
|
+
},
|
|
158
|
+
"./integration-hub.feature": {
|
|
159
|
+
"types": "./dist/integration-hub.feature.d.ts",
|
|
160
|
+
"bun": "./dist/integration-hub.feature.js",
|
|
161
|
+
"node": "./dist/node/integration-hub.feature.mjs",
|
|
162
|
+
"browser": "./dist/browser/integration-hub.feature.js",
|
|
163
|
+
"default": "./dist/integration-hub.feature.js"
|
|
164
|
+
},
|
|
165
|
+
"./integration/index": {
|
|
166
|
+
"types": "./dist/integration/index.d.ts",
|
|
167
|
+
"bun": "./dist/integration/index.js",
|
|
168
|
+
"node": "./dist/node/integration/index.mjs",
|
|
169
|
+
"browser": "./dist/browser/integration/index.js",
|
|
170
|
+
"default": "./dist/integration/index.js"
|
|
171
|
+
},
|
|
172
|
+
"./integration/integration.enum": {
|
|
173
|
+
"types": "./dist/integration/integration.enum.d.ts",
|
|
174
|
+
"bun": "./dist/integration/integration.enum.js",
|
|
175
|
+
"node": "./dist/node/integration/integration.enum.mjs",
|
|
176
|
+
"browser": "./dist/browser/integration/integration.enum.js",
|
|
177
|
+
"default": "./dist/integration/integration.enum.js"
|
|
178
|
+
},
|
|
179
|
+
"./integration/integration.operations": {
|
|
180
|
+
"types": "./dist/integration/integration.operations.d.ts",
|
|
181
|
+
"bun": "./dist/integration/integration.operations.js",
|
|
182
|
+
"node": "./dist/node/integration/integration.operations.mjs",
|
|
183
|
+
"browser": "./dist/browser/integration/integration.operations.js",
|
|
184
|
+
"default": "./dist/integration/integration.operations.js"
|
|
185
|
+
},
|
|
186
|
+
"./integration/integration.presentation": {
|
|
187
|
+
"types": "./dist/integration/integration.presentation.d.ts",
|
|
188
|
+
"bun": "./dist/integration/integration.presentation.js",
|
|
189
|
+
"node": "./dist/node/integration/integration.presentation.mjs",
|
|
190
|
+
"browser": "./dist/browser/integration/integration.presentation.js",
|
|
191
|
+
"default": "./dist/integration/integration.presentation.js"
|
|
192
|
+
},
|
|
193
|
+
"./integration/integration.schema": {
|
|
194
|
+
"types": "./dist/integration/integration.schema.d.ts",
|
|
195
|
+
"bun": "./dist/integration/integration.schema.js",
|
|
196
|
+
"node": "./dist/node/integration/integration.schema.mjs",
|
|
197
|
+
"browser": "./dist/browser/integration/integration.schema.js",
|
|
198
|
+
"default": "./dist/integration/integration.schema.js"
|
|
199
|
+
},
|
|
200
|
+
"./seeders": {
|
|
201
|
+
"types": "./dist/seeders/index.d.ts",
|
|
202
|
+
"bun": "./dist/seeders/index.js",
|
|
203
|
+
"node": "./dist/node/seeders/index.mjs",
|
|
204
|
+
"browser": "./dist/browser/seeders/index.js",
|
|
205
|
+
"default": "./dist/seeders/index.js"
|
|
206
|
+
},
|
|
207
|
+
"./seeders/index": {
|
|
208
|
+
"types": "./dist/seeders/index.d.ts",
|
|
209
|
+
"bun": "./dist/seeders/index.js",
|
|
210
|
+
"node": "./dist/node/seeders/index.mjs",
|
|
211
|
+
"browser": "./dist/browser/seeders/index.js",
|
|
212
|
+
"default": "./dist/seeders/index.js"
|
|
213
|
+
},
|
|
214
|
+
"./sync": {
|
|
215
|
+
"types": "./dist/sync/index.d.ts",
|
|
216
|
+
"bun": "./dist/sync/index.js",
|
|
217
|
+
"node": "./dist/node/sync/index.mjs",
|
|
218
|
+
"browser": "./dist/browser/sync/index.js",
|
|
219
|
+
"default": "./dist/sync/index.js"
|
|
220
|
+
},
|
|
221
|
+
"./sync-engine": {
|
|
222
|
+
"types": "./dist/sync-engine/index.d.ts",
|
|
223
|
+
"bun": "./dist/sync-engine/index.js",
|
|
224
|
+
"node": "./dist/node/sync-engine/index.mjs",
|
|
225
|
+
"browser": "./dist/browser/sync-engine/index.js",
|
|
226
|
+
"default": "./dist/sync-engine/index.js"
|
|
227
|
+
},
|
|
228
|
+
"./sync-engine/index": {
|
|
229
|
+
"types": "./dist/sync-engine/index.d.ts",
|
|
230
|
+
"bun": "./dist/sync-engine/index.js",
|
|
231
|
+
"node": "./dist/node/sync-engine/index.mjs",
|
|
232
|
+
"browser": "./dist/browser/sync-engine/index.js",
|
|
233
|
+
"default": "./dist/sync-engine/index.js"
|
|
234
|
+
},
|
|
235
|
+
"./sync/index": {
|
|
236
|
+
"types": "./dist/sync/index.d.ts",
|
|
237
|
+
"bun": "./dist/sync/index.js",
|
|
238
|
+
"node": "./dist/node/sync/index.mjs",
|
|
239
|
+
"browser": "./dist/browser/sync/index.js",
|
|
240
|
+
"default": "./dist/sync/index.js"
|
|
241
|
+
},
|
|
242
|
+
"./sync/sync.enum": {
|
|
243
|
+
"types": "./dist/sync/sync.enum.d.ts",
|
|
244
|
+
"bun": "./dist/sync/sync.enum.js",
|
|
245
|
+
"node": "./dist/node/sync/sync.enum.mjs",
|
|
246
|
+
"browser": "./dist/browser/sync/sync.enum.js",
|
|
247
|
+
"default": "./dist/sync/sync.enum.js"
|
|
248
|
+
},
|
|
249
|
+
"./sync/sync.operations": {
|
|
250
|
+
"types": "./dist/sync/sync.operations.d.ts",
|
|
251
|
+
"bun": "./dist/sync/sync.operations.js",
|
|
252
|
+
"node": "./dist/node/sync/sync.operations.mjs",
|
|
253
|
+
"browser": "./dist/browser/sync/sync.operations.js",
|
|
254
|
+
"default": "./dist/sync/sync.operations.js"
|
|
255
|
+
},
|
|
256
|
+
"./sync/sync.presentation": {
|
|
257
|
+
"types": "./dist/sync/sync.presentation.d.ts",
|
|
258
|
+
"bun": "./dist/sync/sync.presentation.js",
|
|
259
|
+
"node": "./dist/node/sync/sync.presentation.mjs",
|
|
260
|
+
"browser": "./dist/browser/sync/sync.presentation.js",
|
|
261
|
+
"default": "./dist/sync/sync.presentation.js"
|
|
262
|
+
},
|
|
263
|
+
"./sync/sync.schema": {
|
|
264
|
+
"types": "./dist/sync/sync.schema.d.ts",
|
|
265
|
+
"bun": "./dist/sync/sync.schema.js",
|
|
266
|
+
"node": "./dist/node/sync/sync.schema.mjs",
|
|
267
|
+
"browser": "./dist/browser/sync/sync.schema.js",
|
|
268
|
+
"default": "./dist/sync/sync.schema.js"
|
|
269
|
+
},
|
|
270
|
+
"./tests/operations.test-spec": {
|
|
271
|
+
"types": "./dist/tests/operations.test-spec.d.ts",
|
|
272
|
+
"bun": "./dist/tests/operations.test-spec.js",
|
|
273
|
+
"node": "./dist/node/tests/operations.test-spec.mjs",
|
|
274
|
+
"browser": "./dist/browser/tests/operations.test-spec.js",
|
|
275
|
+
"default": "./dist/tests/operations.test-spec.js"
|
|
276
|
+
},
|
|
277
|
+
"./ui": {
|
|
278
|
+
"types": "./dist/ui/index.d.ts",
|
|
279
|
+
"bun": "./dist/ui/index.js",
|
|
280
|
+
"node": "./dist/node/ui/index.mjs",
|
|
281
|
+
"browser": "./dist/browser/ui/index.js",
|
|
282
|
+
"default": "./dist/ui/index.js"
|
|
283
|
+
},
|
|
284
|
+
"./ui/hooks": {
|
|
285
|
+
"types": "./dist/ui/hooks/index.d.ts",
|
|
286
|
+
"bun": "./dist/ui/hooks/index.js",
|
|
287
|
+
"node": "./dist/node/ui/hooks/index.mjs",
|
|
288
|
+
"browser": "./dist/browser/ui/hooks/index.js",
|
|
289
|
+
"default": "./dist/ui/hooks/index.js"
|
|
290
|
+
},
|
|
291
|
+
"./ui/hooks/index": {
|
|
292
|
+
"types": "./dist/ui/hooks/index.d.ts",
|
|
293
|
+
"bun": "./dist/ui/hooks/index.js",
|
|
294
|
+
"node": "./dist/node/ui/hooks/index.mjs",
|
|
295
|
+
"browser": "./dist/browser/ui/hooks/index.js",
|
|
296
|
+
"default": "./dist/ui/hooks/index.js"
|
|
297
|
+
},
|
|
298
|
+
"./ui/hooks/useIntegrationData": {
|
|
299
|
+
"types": "./dist/ui/hooks/useIntegrationData.d.ts",
|
|
300
|
+
"bun": "./dist/ui/hooks/useIntegrationData.js",
|
|
301
|
+
"node": "./dist/node/ui/hooks/useIntegrationData.mjs",
|
|
302
|
+
"browser": "./dist/browser/ui/hooks/useIntegrationData.js",
|
|
303
|
+
"default": "./dist/ui/hooks/useIntegrationData.js"
|
|
304
|
+
},
|
|
305
|
+
"./ui/index": {
|
|
306
|
+
"types": "./dist/ui/index.d.ts",
|
|
307
|
+
"bun": "./dist/ui/index.js",
|
|
308
|
+
"node": "./dist/node/ui/index.mjs",
|
|
309
|
+
"browser": "./dist/browser/ui/index.js",
|
|
310
|
+
"default": "./dist/ui/index.js"
|
|
311
|
+
},
|
|
312
|
+
"./ui/IntegrationDashboard": {
|
|
313
|
+
"types": "./dist/ui/IntegrationDashboard.d.ts",
|
|
314
|
+
"bun": "./dist/ui/IntegrationDashboard.js",
|
|
315
|
+
"node": "./dist/node/ui/IntegrationDashboard.mjs",
|
|
316
|
+
"browser": "./dist/browser/ui/IntegrationDashboard.js",
|
|
317
|
+
"default": "./dist/ui/IntegrationDashboard.js"
|
|
318
|
+
},
|
|
319
|
+
"./ui/renderers": {
|
|
320
|
+
"types": "./dist/ui/renderers/index.d.ts",
|
|
321
|
+
"bun": "./dist/ui/renderers/index.js",
|
|
322
|
+
"node": "./dist/node/ui/renderers/index.mjs",
|
|
323
|
+
"browser": "./dist/browser/ui/renderers/index.js",
|
|
324
|
+
"default": "./dist/ui/renderers/index.js"
|
|
325
|
+
},
|
|
326
|
+
"./ui/renderers/index": {
|
|
327
|
+
"types": "./dist/ui/renderers/index.d.ts",
|
|
328
|
+
"bun": "./dist/ui/renderers/index.js",
|
|
329
|
+
"node": "./dist/node/ui/renderers/index.mjs",
|
|
330
|
+
"browser": "./dist/browser/ui/renderers/index.js",
|
|
331
|
+
"default": "./dist/ui/renderers/index.js"
|
|
332
|
+
},
|
|
333
|
+
"./ui/renderers/integration.markdown": {
|
|
334
|
+
"types": "./dist/ui/renderers/integration.markdown.d.ts",
|
|
335
|
+
"bun": "./dist/ui/renderers/integration.markdown.js",
|
|
336
|
+
"node": "./dist/node/ui/renderers/integration.markdown.mjs",
|
|
337
|
+
"browser": "./dist/browser/ui/renderers/integration.markdown.js",
|
|
338
|
+
"default": "./dist/ui/renderers/integration.markdown.js"
|
|
339
|
+
}
|
|
82
340
|
},
|
|
83
341
|
"files": [
|
|
84
342
|
"dist",
|