@lssm/lib.contracts 1.3.0 → 1.4.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 +170 -342
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.contracts",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "bun build:bundle && bun build:types",
|
|
6
6
|
"build:bundle": "tsdown",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"stripe": "^19.1.0",
|
|
31
31
|
"postmark": "^4.0.4",
|
|
32
32
|
"twilio": "^5.10.5",
|
|
33
|
-
"@lssm/lib.schema": "^1.
|
|
33
|
+
"@lssm/lib.schema": "^1.4.0",
|
|
34
34
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
35
35
|
"mcp-handler": "^1.0.2",
|
|
36
36
|
"zod": "^4.1.5"
|
|
@@ -49,350 +49,178 @@
|
|
|
49
49
|
"react-hook-form": "^7.66.0",
|
|
50
50
|
"@hookform/resolvers": "^5.2.2"
|
|
51
51
|
},
|
|
52
|
-
"exports": {
|
|
53
|
-
".": "./src/index.ts",
|
|
54
|
-
"./app-config": "./src/app-config/index.ts",
|
|
55
|
-
"./app-config/branding": "./src/app-config/branding.ts",
|
|
56
|
-
"./app-config/contracts": "./src/app-config/contracts.ts",
|
|
57
|
-
"./app-config/events": "./src/app-config/events.ts",
|
|
58
|
-
"./app-config/lifecycle": "./src/app-config/lifecycle.ts",
|
|
59
|
-
"./app-config/lifecycle-contracts": "./src/app-config/lifecycle-contracts.ts",
|
|
60
|
-
"./app-config/runtime": "./src/app-config/runtime.ts",
|
|
61
|
-
"./app-config/spec": "./src/app-config/spec.ts",
|
|
62
|
-
"./app-config/validation": "./src/app-config/validation.ts",
|
|
63
|
-
"./capabilities": "./src/capabilities.ts",
|
|
64
|
-
"./capabilities/openbanking": "./src/capabilities/openbanking.ts",
|
|
65
|
-
"./client": "./src/client/index.ts",
|
|
66
|
-
"./client/react": "./src/client/react/index.ts",
|
|
67
|
-
"./client/react/drivers/rn-reusables": "./src/client/react/drivers/rn-reusables.ts",
|
|
68
|
-
"./client/react/drivers/shadcn": "./src/client/react/drivers/shadcn.ts",
|
|
69
|
-
"./client/react/feature-render": "./src/client/react/feature-render.ts",
|
|
70
|
-
"./client/react/form-render": "./src/client/react/form-render.tsx",
|
|
71
|
-
"./contracts-adapter-hydration": "./src/contracts-adapter-hydration.ts",
|
|
72
|
-
"./contracts-adapter-input": "./src/contracts-adapter-input.ts",
|
|
73
|
-
"./data-views": "./src/data-views.ts",
|
|
74
|
-
"./events": "./src/events.ts",
|
|
75
|
-
"./experiments/evaluator": "./src/experiments/evaluator.ts",
|
|
76
|
-
"./experiments/spec": "./src/experiments/spec.ts",
|
|
77
|
-
"./features": "./src/features.ts",
|
|
78
|
-
"./forms": "./src/forms.ts",
|
|
79
|
-
"./install": "./src/install.ts",
|
|
80
|
-
"./integrations": "./src/integrations/index.ts",
|
|
81
|
-
"./integrations/binding": "./src/integrations/binding.ts",
|
|
82
|
-
"./integrations/connection": "./src/integrations/connection.ts",
|
|
83
|
-
"./integrations/contracts": "./src/integrations/contracts.ts",
|
|
84
|
-
"./integrations/health": "./src/integrations/health.ts",
|
|
85
|
-
"./integrations/openbanking/contracts": "./src/integrations/openbanking/contracts/index.ts",
|
|
86
|
-
"./integrations/openbanking/contracts/accounts": "./src/integrations/openbanking/contracts/accounts.ts",
|
|
87
|
-
"./integrations/openbanking/contracts/balances": "./src/integrations/openbanking/contracts/balances.ts",
|
|
88
|
-
"./integrations/openbanking/contracts/transactions": "./src/integrations/openbanking/contracts/transactions.ts",
|
|
89
|
-
"./integrations/openbanking/guards": "./src/integrations/openbanking/guards.ts",
|
|
90
|
-
"./integrations/openbanking/models": "./src/integrations/openbanking/models.ts",
|
|
91
|
-
"./integrations/openbanking/telemetry": "./src/integrations/openbanking/telemetry.ts",
|
|
92
|
-
"./integrations/providers": "./src/integrations/providers/index.ts",
|
|
93
|
-
"./integrations/providers/calendar": "./src/integrations/providers/calendar.ts",
|
|
94
|
-
"./integrations/providers/elevenlabs": "./src/integrations/providers/elevenlabs.ts",
|
|
95
|
-
"./integrations/providers/email": "./src/integrations/providers/email.ts",
|
|
96
|
-
"./integrations/providers/embedding": "./src/integrations/providers/embedding.ts",
|
|
97
|
-
"./integrations/providers/gcs-storage": "./src/integrations/providers/gcs-storage.ts",
|
|
98
|
-
"./integrations/providers/gmail": "./src/integrations/providers/gmail.ts",
|
|
99
|
-
"./integrations/providers/google-calendar": "./src/integrations/providers/google-calendar.ts",
|
|
100
|
-
"./integrations/providers/impls": "./src/integrations/providers/impls/index.ts",
|
|
101
|
-
"./integrations/providers/impls/elevenlabs-voice": "./src/integrations/providers/impls/elevenlabs-voice.ts",
|
|
102
|
-
"./integrations/providers/impls/gcs-storage": "./src/integrations/providers/impls/gcs-storage.ts",
|
|
103
|
-
"./integrations/providers/impls/gmail-inbound": "./src/integrations/providers/impls/gmail-inbound.ts",
|
|
104
|
-
"./integrations/providers/impls/gmail-outbound": "./src/integrations/providers/impls/gmail-outbound.ts",
|
|
105
|
-
"./integrations/providers/impls/google-calendar": "./src/integrations/providers/impls/google-calendar.ts",
|
|
106
|
-
"./integrations/providers/impls/mistral-embedding": "./src/integrations/providers/impls/mistral-embedding.ts",
|
|
107
|
-
"./integrations/providers/impls/mistral-llm": "./src/integrations/providers/impls/mistral-llm.ts",
|
|
108
|
-
"./integrations/providers/impls/postmark-email": "./src/integrations/providers/impls/postmark-email.ts",
|
|
109
|
-
"./integrations/providers/impls/powens-client": "./src/integrations/providers/impls/powens-client.ts",
|
|
110
|
-
"./integrations/providers/impls/powens-openbanking": "./src/integrations/providers/impls/powens-openbanking.ts",
|
|
111
|
-
"./integrations/providers/impls/provider-factory": "./src/integrations/providers/impls/provider-factory.ts",
|
|
112
|
-
"./integrations/providers/impls/qdrant-vector": "./src/integrations/providers/impls/qdrant-vector.ts",
|
|
113
|
-
"./integrations/providers/impls/stripe-payments": "./src/integrations/providers/impls/stripe-payments.ts",
|
|
114
|
-
"./integrations/providers/impls/twilio-sms": "./src/integrations/providers/impls/twilio-sms.ts",
|
|
115
|
-
"./integrations/providers/llm": "./src/integrations/providers/llm.ts",
|
|
116
|
-
"./integrations/providers/mistral": "./src/integrations/providers/mistral.ts",
|
|
117
|
-
"./integrations/providers/openbanking": "./src/integrations/providers/openbanking.ts",
|
|
118
|
-
"./integrations/providers/payments": "./src/integrations/providers/payments.ts",
|
|
119
|
-
"./integrations/providers/postmark": "./src/integrations/providers/postmark.ts",
|
|
120
|
-
"./integrations/providers/powens": "./src/integrations/providers/powens.ts",
|
|
121
|
-
"./integrations/providers/qdrant": "./src/integrations/providers/qdrant.ts",
|
|
122
|
-
"./integrations/providers/sms": "./src/integrations/providers/sms.ts",
|
|
123
|
-
"./integrations/providers/storage": "./src/integrations/providers/storage.ts",
|
|
124
|
-
"./integrations/providers/stripe": "./src/integrations/providers/stripe.ts",
|
|
125
|
-
"./integrations/providers/twilio-sms": "./src/integrations/providers/twilio-sms.ts",
|
|
126
|
-
"./integrations/providers/vector-store": "./src/integrations/providers/vector-store.ts",
|
|
127
|
-
"./integrations/providers/voice": "./src/integrations/providers/voice.ts",
|
|
128
|
-
"./integrations/runtime": "./src/integrations/runtime.ts",
|
|
129
|
-
"./integrations/secrets": "./src/integrations/secrets/index.ts",
|
|
130
|
-
"./integrations/secrets/env-secret-provider": "./src/integrations/secrets/env-secret-provider.ts",
|
|
131
|
-
"./integrations/secrets/gcp-secret-manager": "./src/integrations/secrets/gcp-secret-manager.ts",
|
|
132
|
-
"./integrations/secrets/manager": "./src/integrations/secrets/manager.ts",
|
|
133
|
-
"./integrations/secrets/provider": "./src/integrations/secrets/provider.ts",
|
|
134
|
-
"./integrations/spec": "./src/integrations/spec.ts",
|
|
135
|
-
"./jobs": "./src/jobs/index.ts",
|
|
136
|
-
"./jobs/gcp-cloud-tasks": "./src/jobs/gcp-cloud-tasks.ts",
|
|
137
|
-
"./jobs/gcp-pubsub": "./src/jobs/gcp-pubsub.ts",
|
|
138
|
-
"./jobs/handlers": "./src/jobs/handlers/index.ts",
|
|
139
|
-
"./jobs/handlers/gmail-sync-handler": "./src/jobs/handlers/gmail-sync-handler.ts",
|
|
140
|
-
"./jobs/handlers/storage-document-handler": "./src/jobs/handlers/storage-document-handler.ts",
|
|
141
|
-
"./jobs/memory-queue": "./src/jobs/memory-queue.ts",
|
|
142
|
-
"./jobs/queue": "./src/jobs/queue.ts",
|
|
143
|
-
"./jsonschema": "./src/jsonschema.ts",
|
|
144
|
-
"./knowledge": "./src/knowledge/index.ts",
|
|
145
|
-
"./knowledge/binding": "./src/knowledge/binding.ts",
|
|
146
|
-
"./knowledge/contracts": "./src/knowledge/contracts.ts",
|
|
147
|
-
"./knowledge/ingestion": "./src/knowledge/ingestion/index.ts",
|
|
148
|
-
"./knowledge/ingestion/document-processor": "./src/knowledge/ingestion/document-processor.ts",
|
|
149
|
-
"./knowledge/ingestion/embedding-service": "./src/knowledge/ingestion/embedding-service.ts",
|
|
150
|
-
"./knowledge/ingestion/gmail-adapter": "./src/knowledge/ingestion/gmail-adapter.ts",
|
|
151
|
-
"./knowledge/ingestion/storage-adapter": "./src/knowledge/ingestion/storage-adapter.ts",
|
|
152
|
-
"./knowledge/ingestion/vector-indexer": "./src/knowledge/ingestion/vector-indexer.ts",
|
|
153
|
-
"./knowledge/query": "./src/knowledge/query/index.ts",
|
|
154
|
-
"./knowledge/query/service": "./src/knowledge/query/service.ts",
|
|
155
|
-
"./knowledge/runtime": "./src/knowledge/runtime.ts",
|
|
156
|
-
"./knowledge/source": "./src/knowledge/source.ts",
|
|
157
|
-
"./knowledge/spaces": "./src/knowledge/spaces/index.ts",
|
|
158
|
-
"./knowledge/spaces/email-threads": "./src/knowledge/spaces/email-threads.ts",
|
|
159
|
-
"./knowledge/spaces/financial-docs": "./src/knowledge/spaces/financial-docs.ts",
|
|
160
|
-
"./knowledge/spaces/financial-overview": "./src/knowledge/spaces/financial-overview.ts",
|
|
161
|
-
"./knowledge/spaces/product-canon": "./src/knowledge/spaces/product-canon.ts",
|
|
162
|
-
"./knowledge/spaces/support-faq": "./src/knowledge/spaces/support-faq.ts",
|
|
163
|
-
"./knowledge/spaces/uploaded-docs": "./src/knowledge/spaces/uploaded-docs.ts",
|
|
164
|
-
"./knowledge/spec": "./src/knowledge/spec.ts",
|
|
165
|
-
"./markdown": "./src/markdown.ts",
|
|
166
|
-
"./migrations": "./src/migrations.ts",
|
|
167
|
-
"./onboarding-base": "./src/onboarding-base.ts",
|
|
168
|
-
"./ownership": "./src/ownership.ts",
|
|
169
|
-
"./policy/engine": "./src/policy/engine.ts",
|
|
170
|
-
"./policy/opa-adapter": "./src/policy/opa-adapter.ts",
|
|
171
|
-
"./policy/spec": "./src/policy/spec.ts",
|
|
172
|
-
"./presentations": "./src/presentations.ts",
|
|
173
|
-
"./presentations.backcompat": "./src/presentations.backcompat.ts",
|
|
174
|
-
"./presentations.v2": "./src/presentations.v2.ts",
|
|
175
|
-
"./prompt": "./src/prompt.ts",
|
|
176
|
-
"./promptRegistry": "./src/promptRegistry.ts",
|
|
177
|
-
"./regenerator": "./src/regenerator/index.ts",
|
|
178
|
-
"./regenerator/adapters": "./src/regenerator/adapters.ts",
|
|
179
|
-
"./regenerator/executor": "./src/regenerator/executor.ts",
|
|
180
|
-
"./regenerator/service": "./src/regenerator/service.ts",
|
|
181
|
-
"./regenerator/sinks": "./src/regenerator/sinks.ts",
|
|
182
|
-
"./regenerator/types": "./src/regenerator/types.ts",
|
|
183
|
-
"./regenerator/utils": "./src/regenerator/utils.ts",
|
|
184
|
-
"./registry": "./src/registry.ts",
|
|
185
|
-
"./resources": "./src/resources.ts",
|
|
186
|
-
"./server": "./src/server/index.ts",
|
|
187
|
-
"./server/graphql-pothos": "./src/server/graphql-pothos.ts",
|
|
188
|
-
"./server/graphql-schema-export": "./src/server/graphql-schema-export.ts",
|
|
189
|
-
"./server/provider-mcp": "./src/server/provider-mcp.ts",
|
|
190
|
-
"./server/rest-elysia": "./src/server/rest-elysia.ts",
|
|
191
|
-
"./server/rest-express": "./src/server/rest-express.ts",
|
|
192
|
-
"./server/rest-generic": "./src/server/rest-generic.ts",
|
|
193
|
-
"./server/rest-next-app": "./src/server/rest-next-app.ts",
|
|
194
|
-
"./server/rest-next-mcp": "./src/server/rest-next-mcp.ts",
|
|
195
|
-
"./server/rest-next-pages": "./src/server/rest-next-pages.ts",
|
|
196
|
-
"./spec": "./src/spec.ts",
|
|
197
|
-
"./telemetry": "./src/telemetry/index.ts",
|
|
198
|
-
"./telemetry/anomaly": "./src/telemetry/anomaly.ts",
|
|
199
|
-
"./telemetry/spec": "./src/telemetry/spec.ts",
|
|
200
|
-
"./telemetry/tracker": "./src/telemetry/tracker.ts",
|
|
201
|
-
"./tests": "./src/tests/index.ts",
|
|
202
|
-
"./tests/runner": "./src/tests/runner.ts",
|
|
203
|
-
"./tests/spec": "./src/tests/spec.ts",
|
|
204
|
-
"./themes": "./src/themes.ts",
|
|
205
|
-
"./translations/catalog": "./src/translations/catalog.ts",
|
|
206
|
-
"./translations/tenant": "./src/translations/tenant.ts",
|
|
207
|
-
"./types": "./src/types.ts",
|
|
208
|
-
"./types/all": "./src/types/all.ts",
|
|
209
|
-
"./workflow": "./src/workflow/index.ts",
|
|
210
|
-
"./workflow/adapters": "./src/workflow/adapters/index.ts",
|
|
211
|
-
"./workflow/adapters/db-adapter": "./src/workflow/adapters/db-adapter.ts",
|
|
212
|
-
"./workflow/adapters/file-adapter": "./src/workflow/adapters/file-adapter.ts",
|
|
213
|
-
"./workflow/adapters/memory-store": "./src/workflow/adapters/memory-store.ts",
|
|
214
|
-
"./workflow/expression": "./src/workflow/expression.ts",
|
|
215
|
-
"./workflow/runner": "./src/workflow/runner.ts",
|
|
216
|
-
"./workflow/spec": "./src/workflow/spec.ts",
|
|
217
|
-
"./workflow/state": "./src/workflow/state.ts",
|
|
218
|
-
"./workflow/validation": "./src/workflow/validation.ts",
|
|
219
|
-
"./*": "./*"
|
|
220
|
-
},
|
|
221
52
|
"type": "module",
|
|
222
53
|
"main": "./dist/index.js",
|
|
223
54
|
"module": "./dist/index.js",
|
|
224
55
|
"types": "./dist/index.d.ts",
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
"./*": "./*"
|
|
394
|
-
},
|
|
395
|
-
"access": "public"
|
|
56
|
+
"exports": {
|
|
57
|
+
".": "./dist/index.js",
|
|
58
|
+
"./app-config": "./dist/app-config/index.js",
|
|
59
|
+
"./app-config/branding": "./dist/app-config/branding.js",
|
|
60
|
+
"./app-config/contracts": "./dist/app-config/contracts.js",
|
|
61
|
+
"./app-config/events": "./dist/app-config/events.js",
|
|
62
|
+
"./app-config/lifecycle": "./dist/app-config/lifecycle.js",
|
|
63
|
+
"./app-config/lifecycle-contracts": "./dist/app-config/lifecycle-contracts.js",
|
|
64
|
+
"./app-config/runtime": "./dist/app-config/runtime.js",
|
|
65
|
+
"./app-config/spec": "./dist/app-config/spec.js",
|
|
66
|
+
"./app-config/validation": "./dist/app-config/validation.js",
|
|
67
|
+
"./capabilities": "./dist/capabilities.js",
|
|
68
|
+
"./capabilities/openbanking": "./dist/capabilities/openbanking.js",
|
|
69
|
+
"./client": "./dist/client/index.js",
|
|
70
|
+
"./client/react": "./dist/client/react/index.js",
|
|
71
|
+
"./client/react/drivers/rn-reusables": "./dist/client/react/drivers/rn-reusables.js",
|
|
72
|
+
"./client/react/drivers/shadcn": "./dist/client/react/drivers/shadcn.js",
|
|
73
|
+
"./client/react/feature-render": "./dist/client/react/feature-render.js",
|
|
74
|
+
"./client/react/form-render": "./dist/client/react/form-render.js",
|
|
75
|
+
"./contracts-adapter-hydration": "./dist/contracts-adapter-hydration.js",
|
|
76
|
+
"./contracts-adapter-input": "./dist/contracts-adapter-input.js",
|
|
77
|
+
"./data-views": "./dist/data-views.js",
|
|
78
|
+
"./events": "./dist/events.js",
|
|
79
|
+
"./experiments/evaluator": "./dist/experiments/evaluator.js",
|
|
80
|
+
"./experiments/spec": "./dist/experiments/spec.js",
|
|
81
|
+
"./features": "./dist/features.js",
|
|
82
|
+
"./forms": "./dist/forms.js",
|
|
83
|
+
"./install": "./dist/install.js",
|
|
84
|
+
"./integrations": "./dist/integrations/index.js",
|
|
85
|
+
"./integrations/binding": "./dist/integrations/binding.js",
|
|
86
|
+
"./integrations/connection": "./dist/integrations/connection.js",
|
|
87
|
+
"./integrations/contracts": "./dist/integrations/contracts.js",
|
|
88
|
+
"./integrations/health": "./dist/integrations/health.js",
|
|
89
|
+
"./integrations/openbanking/contracts": "./dist/integrations/openbanking/contracts/index.js",
|
|
90
|
+
"./integrations/openbanking/contracts/accounts": "./dist/integrations/openbanking/contracts/accounts.js",
|
|
91
|
+
"./integrations/openbanking/contracts/balances": "./dist/integrations/openbanking/contracts/balances.js",
|
|
92
|
+
"./integrations/openbanking/contracts/transactions": "./dist/integrations/openbanking/contracts/transactions.js",
|
|
93
|
+
"./integrations/openbanking/guards": "./dist/integrations/openbanking/guards.js",
|
|
94
|
+
"./integrations/openbanking/models": "./dist/integrations/openbanking/models.js",
|
|
95
|
+
"./integrations/openbanking/telemetry": "./dist/integrations/openbanking/telemetry.js",
|
|
96
|
+
"./integrations/providers": "./dist/integrations/providers/index.js",
|
|
97
|
+
"./integrations/providers/calendar": "./dist/integrations/providers/calendar.js",
|
|
98
|
+
"./integrations/providers/elevenlabs": "./dist/integrations/providers/elevenlabs.js",
|
|
99
|
+
"./integrations/providers/email": "./dist/integrations/providers/email.js",
|
|
100
|
+
"./integrations/providers/embedding": "./dist/integrations/providers/embedding.js",
|
|
101
|
+
"./integrations/providers/gcs-storage": "./dist/integrations/providers/gcs-storage.js",
|
|
102
|
+
"./integrations/providers/gmail": "./dist/integrations/providers/gmail.js",
|
|
103
|
+
"./integrations/providers/google-calendar": "./dist/integrations/providers/google-calendar.js",
|
|
104
|
+
"./integrations/providers/impls": "./dist/integrations/providers/impls/index.js",
|
|
105
|
+
"./integrations/providers/impls/elevenlabs-voice": "./dist/integrations/providers/impls/elevenlabs-voice.js",
|
|
106
|
+
"./integrations/providers/impls/gcs-storage": "./dist/integrations/providers/impls/gcs-storage.js",
|
|
107
|
+
"./integrations/providers/impls/gmail-inbound": "./dist/integrations/providers/impls/gmail-inbound.js",
|
|
108
|
+
"./integrations/providers/impls/gmail-outbound": "./dist/integrations/providers/impls/gmail-outbound.js",
|
|
109
|
+
"./integrations/providers/impls/google-calendar": "./dist/integrations/providers/impls/google-calendar.js",
|
|
110
|
+
"./integrations/providers/impls/mistral-embedding": "./dist/integrations/providers/impls/mistral-embedding.js",
|
|
111
|
+
"./integrations/providers/impls/mistral-llm": "./dist/integrations/providers/impls/mistral-llm.js",
|
|
112
|
+
"./integrations/providers/impls/postmark-email": "./dist/integrations/providers/impls/postmark-email.js",
|
|
113
|
+
"./integrations/providers/impls/powens-client": "./dist/integrations/providers/impls/powens-client.js",
|
|
114
|
+
"./integrations/providers/impls/powens-openbanking": "./dist/integrations/providers/impls/powens-openbanking.js",
|
|
115
|
+
"./integrations/providers/impls/provider-factory": "./dist/integrations/providers/impls/provider-factory.js",
|
|
116
|
+
"./integrations/providers/impls/qdrant-vector": "./dist/integrations/providers/impls/qdrant-vector.js",
|
|
117
|
+
"./integrations/providers/impls/stripe-payments": "./dist/integrations/providers/impls/stripe-payments.js",
|
|
118
|
+
"./integrations/providers/impls/twilio-sms": "./dist/integrations/providers/impls/twilio-sms.js",
|
|
119
|
+
"./integrations/providers/llm": "./dist/integrations/providers/llm.js",
|
|
120
|
+
"./integrations/providers/mistral": "./dist/integrations/providers/mistral.js",
|
|
121
|
+
"./integrations/providers/openbanking": "./dist/integrations/providers/openbanking.js",
|
|
122
|
+
"./integrations/providers/payments": "./dist/integrations/providers/payments.js",
|
|
123
|
+
"./integrations/providers/postmark": "./dist/integrations/providers/postmark.js",
|
|
124
|
+
"./integrations/providers/powens": "./dist/integrations/providers/powens.js",
|
|
125
|
+
"./integrations/providers/qdrant": "./dist/integrations/providers/qdrant.js",
|
|
126
|
+
"./integrations/providers/sms": "./dist/integrations/providers/sms.js",
|
|
127
|
+
"./integrations/providers/storage": "./dist/integrations/providers/storage.js",
|
|
128
|
+
"./integrations/providers/stripe": "./dist/integrations/providers/stripe.js",
|
|
129
|
+
"./integrations/providers/twilio-sms": "./dist/integrations/providers/twilio-sms.js",
|
|
130
|
+
"./integrations/providers/vector-store": "./dist/integrations/providers/vector-store.js",
|
|
131
|
+
"./integrations/providers/voice": "./dist/integrations/providers/voice.js",
|
|
132
|
+
"./integrations/runtime": "./dist/integrations/runtime.js",
|
|
133
|
+
"./integrations/secrets": "./dist/integrations/secrets/index.js",
|
|
134
|
+
"./integrations/secrets/env-secret-provider": "./dist/integrations/secrets/env-secret-provider.js",
|
|
135
|
+
"./integrations/secrets/gcp-secret-manager": "./dist/integrations/secrets/gcp-secret-manager.js",
|
|
136
|
+
"./integrations/secrets/manager": "./dist/integrations/secrets/manager.js",
|
|
137
|
+
"./integrations/secrets/provider": "./dist/integrations/secrets/provider.js",
|
|
138
|
+
"./integrations/spec": "./dist/integrations/spec.js",
|
|
139
|
+
"./jobs": "./dist/jobs/index.js",
|
|
140
|
+
"./jobs/gcp-cloud-tasks": "./dist/jobs/gcp-cloud-tasks.js",
|
|
141
|
+
"./jobs/gcp-pubsub": "./dist/jobs/gcp-pubsub.js",
|
|
142
|
+
"./jobs/handlers": "./dist/jobs/handlers/index.js",
|
|
143
|
+
"./jobs/handlers/gmail-sync-handler": "./dist/jobs/handlers/gmail-sync-handler.js",
|
|
144
|
+
"./jobs/handlers/storage-document-handler": "./dist/jobs/handlers/storage-document-handler.js",
|
|
145
|
+
"./jobs/memory-queue": "./dist/jobs/memory-queue.js",
|
|
146
|
+
"./jobs/queue": "./dist/jobs/queue.js",
|
|
147
|
+
"./jsonschema": "./dist/jsonschema.js",
|
|
148
|
+
"./knowledge": "./dist/knowledge/index.js",
|
|
149
|
+
"./knowledge/binding": "./dist/knowledge/binding.js",
|
|
150
|
+
"./knowledge/contracts": "./dist/knowledge/contracts.js",
|
|
151
|
+
"./knowledge/ingestion": "./dist/knowledge/ingestion/index.js",
|
|
152
|
+
"./knowledge/ingestion/document-processor": "./dist/knowledge/ingestion/document-processor.js",
|
|
153
|
+
"./knowledge/ingestion/embedding-service": "./dist/knowledge/ingestion/embedding-service.js",
|
|
154
|
+
"./knowledge/ingestion/gmail-adapter": "./dist/knowledge/ingestion/gmail-adapter.js",
|
|
155
|
+
"./knowledge/ingestion/storage-adapter": "./dist/knowledge/ingestion/storage-adapter.js",
|
|
156
|
+
"./knowledge/ingestion/vector-indexer": "./dist/knowledge/ingestion/vector-indexer.js",
|
|
157
|
+
"./knowledge/query": "./dist/knowledge/query/index.js",
|
|
158
|
+
"./knowledge/query/service": "./dist/knowledge/query/service.js",
|
|
159
|
+
"./knowledge/runtime": "./dist/knowledge/runtime.js",
|
|
160
|
+
"./knowledge/source": "./dist/knowledge/source.js",
|
|
161
|
+
"./knowledge/spaces": "./dist/knowledge/spaces/index.js",
|
|
162
|
+
"./knowledge/spaces/email-threads": "./dist/knowledge/spaces/email-threads.js",
|
|
163
|
+
"./knowledge/spaces/financial-docs": "./dist/knowledge/spaces/financial-docs.js",
|
|
164
|
+
"./knowledge/spaces/financial-overview": "./dist/knowledge/spaces/financial-overview.js",
|
|
165
|
+
"./knowledge/spaces/product-canon": "./dist/knowledge/spaces/product-canon.js",
|
|
166
|
+
"./knowledge/spaces/support-faq": "./dist/knowledge/spaces/support-faq.js",
|
|
167
|
+
"./knowledge/spaces/uploaded-docs": "./dist/knowledge/spaces/uploaded-docs.js",
|
|
168
|
+
"./knowledge/spec": "./dist/knowledge/spec.js",
|
|
169
|
+
"./markdown": "./dist/markdown.js",
|
|
170
|
+
"./migrations": "./dist/migrations.js",
|
|
171
|
+
"./onboarding-base": "./dist/onboarding-base.js",
|
|
172
|
+
"./ownership": "./dist/ownership.js",
|
|
173
|
+
"./policy/engine": "./dist/policy/engine.js",
|
|
174
|
+
"./policy/opa-adapter": "./dist/policy/opa-adapter.js",
|
|
175
|
+
"./policy/spec": "./dist/policy/spec.js",
|
|
176
|
+
"./presentations": "./dist/presentations.js",
|
|
177
|
+
"./presentations.backcompat": "./dist/presentations.backcompat.js",
|
|
178
|
+
"./presentations.v2": "./dist/presentations.v2.js",
|
|
179
|
+
"./prompt": "./dist/prompt.js",
|
|
180
|
+
"./promptRegistry": "./dist/promptRegistry.js",
|
|
181
|
+
"./regenerator": "./dist/regenerator/index.js",
|
|
182
|
+
"./regenerator/adapters": "./dist/regenerator/adapters.js",
|
|
183
|
+
"./regenerator/executor": "./dist/regenerator/executor.js",
|
|
184
|
+
"./regenerator/service": "./dist/regenerator/service.js",
|
|
185
|
+
"./regenerator/sinks": "./dist/regenerator/sinks.js",
|
|
186
|
+
"./regenerator/types": "./dist/regenerator/types.js",
|
|
187
|
+
"./regenerator/utils": "./dist/regenerator/utils.js",
|
|
188
|
+
"./registry": "./dist/registry.js",
|
|
189
|
+
"./resources": "./dist/resources.js",
|
|
190
|
+
"./server": "./dist/server/index.js",
|
|
191
|
+
"./server/graphql-pothos": "./dist/server/graphql-pothos.js",
|
|
192
|
+
"./server/graphql-schema-export": "./dist/server/graphql-schema-export.js",
|
|
193
|
+
"./server/provider-mcp": "./dist/server/provider-mcp.js",
|
|
194
|
+
"./server/rest-elysia": "./dist/server/rest-elysia.js",
|
|
195
|
+
"./server/rest-express": "./dist/server/rest-express.js",
|
|
196
|
+
"./server/rest-generic": "./dist/server/rest-generic.js",
|
|
197
|
+
"./server/rest-next-app": "./dist/server/rest-next-app.js",
|
|
198
|
+
"./server/rest-next-mcp": "./dist/server/rest-next-mcp.js",
|
|
199
|
+
"./server/rest-next-pages": "./dist/server/rest-next-pages.js",
|
|
200
|
+
"./spec": "./dist/spec.js",
|
|
201
|
+
"./telemetry": "./dist/telemetry/index.js",
|
|
202
|
+
"./telemetry/anomaly": "./dist/telemetry/anomaly.js",
|
|
203
|
+
"./telemetry/spec": "./dist/telemetry/spec.js",
|
|
204
|
+
"./telemetry/tracker": "./dist/telemetry/tracker.js",
|
|
205
|
+
"./tests": "./dist/tests/index.js",
|
|
206
|
+
"./tests/runner": "./dist/tests/runner.js",
|
|
207
|
+
"./tests/spec": "./dist/tests/spec.js",
|
|
208
|
+
"./themes": "./dist/themes.js",
|
|
209
|
+
"./translations/catalog": "./dist/translations/catalog.js",
|
|
210
|
+
"./translations/tenant": "./dist/translations/tenant.js",
|
|
211
|
+
"./types": "./dist/types.js",
|
|
212
|
+
"./types/all": "./dist/types/all.js",
|
|
213
|
+
"./workflow": "./dist/workflow/index.js",
|
|
214
|
+
"./workflow/adapters": "./dist/workflow/adapters/index.js",
|
|
215
|
+
"./workflow/adapters/db-adapter": "./dist/workflow/adapters/db-adapter.js",
|
|
216
|
+
"./workflow/adapters/file-adapter": "./dist/workflow/adapters/file-adapter.js",
|
|
217
|
+
"./workflow/adapters/memory-store": "./dist/workflow/adapters/memory-store.js",
|
|
218
|
+
"./workflow/expression": "./dist/workflow/expression.js",
|
|
219
|
+
"./workflow/runner": "./dist/workflow/runner.js",
|
|
220
|
+
"./workflow/spec": "./dist/workflow/spec.js",
|
|
221
|
+
"./workflow/state": "./dist/workflow/state.js",
|
|
222
|
+
"./workflow/validation": "./dist/workflow/validation.js",
|
|
223
|
+
"./*": "./*"
|
|
396
224
|
},
|
|
397
225
|
"files": [
|
|
398
226
|
"dist",
|