@contractspec/integration.providers-impls 2.10.0 → 3.1.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.
Files changed (138) hide show
  1. package/README.md +66 -10
  2. package/dist/impls/async-event-queue.d.ts +8 -0
  3. package/dist/impls/async-event-queue.js +49 -0
  4. package/dist/impls/composio-fallback-resolver.d.ts +34 -0
  5. package/dist/impls/composio-fallback-resolver.js +580 -0
  6. package/dist/impls/composio-mcp.d.ts +22 -0
  7. package/dist/impls/composio-mcp.js +164 -0
  8. package/dist/impls/composio-proxies.d.ts +60 -0
  9. package/dist/impls/composio-proxies.js +311 -0
  10. package/dist/impls/composio-sdk.d.ts +25 -0
  11. package/dist/impls/composio-sdk.js +78 -0
  12. package/dist/impls/composio-types.d.ts +43 -0
  13. package/dist/impls/composio-types.js +54 -0
  14. package/dist/impls/elevenlabs-voice.js +2 -0
  15. package/dist/impls/fal-voice.js +2 -0
  16. package/dist/impls/fathom-meeting-recorder.js +2 -0
  17. package/dist/impls/fathom-meeting-recorder.mapper.js +2 -0
  18. package/dist/impls/fathom-meeting-recorder.utils.js +2 -0
  19. package/dist/impls/fathom-meeting-recorder.webhooks.js +2 -0
  20. package/dist/impls/fireflies-meeting-recorder.js +2 -0
  21. package/dist/impls/fireflies-meeting-recorder.queries.js +2 -0
  22. package/dist/impls/fireflies-meeting-recorder.utils.js +2 -0
  23. package/dist/impls/gcs-storage.js +2 -0
  24. package/dist/impls/gmail-inbound.js +2 -0
  25. package/dist/impls/gmail-outbound.js +2 -0
  26. package/dist/impls/google-calendar.js +2 -0
  27. package/dist/impls/gradium-voice.js +2 -0
  28. package/dist/impls/granola-meeting-recorder.js +2 -0
  29. package/dist/impls/granola-meeting-recorder.mcp.js +2 -0
  30. package/dist/impls/health/base-health-provider.d.ts +64 -13
  31. package/dist/impls/health/base-health-provider.js +508 -156
  32. package/dist/impls/health/hybrid-health-providers.d.ts +34 -0
  33. package/dist/impls/health/hybrid-health-providers.js +1090 -0
  34. package/dist/impls/health/official-health-providers.d.ts +78 -0
  35. package/dist/impls/health/official-health-providers.js +970 -0
  36. package/dist/impls/health/provider-normalizers.d.ts +28 -0
  37. package/dist/impls/health/provider-normalizers.js +289 -0
  38. package/dist/impls/health/providers.d.ts +2 -39
  39. package/dist/impls/health/providers.js +897 -184
  40. package/dist/impls/health-provider-factory.js +1011 -196
  41. package/dist/impls/index.d.ts +11 -0
  42. package/dist/impls/index.js +2588 -259
  43. package/dist/impls/jira.js +2 -0
  44. package/dist/impls/linear.js +2 -0
  45. package/dist/impls/messaging-github.d.ts +17 -0
  46. package/dist/impls/messaging-github.js +112 -0
  47. package/dist/impls/messaging-slack.d.ts +14 -0
  48. package/dist/impls/messaging-slack.js +82 -0
  49. package/dist/impls/messaging-whatsapp-meta.d.ts +13 -0
  50. package/dist/impls/messaging-whatsapp-meta.js +54 -0
  51. package/dist/impls/messaging-whatsapp-twilio.d.ts +13 -0
  52. package/dist/impls/messaging-whatsapp-twilio.js +84 -0
  53. package/dist/impls/mistral-conversational.d.ts +23 -0
  54. package/dist/impls/mistral-conversational.js +478 -0
  55. package/dist/impls/mistral-conversational.session.d.ts +32 -0
  56. package/dist/impls/mistral-conversational.session.js +208 -0
  57. package/dist/impls/mistral-embedding.js +2 -0
  58. package/dist/impls/mistral-llm.js +2 -0
  59. package/dist/impls/mistral-stt.d.ts +17 -0
  60. package/dist/impls/mistral-stt.js +169 -0
  61. package/dist/impls/notion.js +2 -0
  62. package/dist/impls/posthog-reader.js +2 -0
  63. package/dist/impls/posthog-utils.js +2 -0
  64. package/dist/impls/posthog.js +2 -0
  65. package/dist/impls/postmark-email.js +2 -0
  66. package/dist/impls/powens-client.js +2 -0
  67. package/dist/impls/powens-openbanking.js +2 -0
  68. package/dist/impls/provider-factory.d.ts +29 -1
  69. package/dist/impls/provider-factory.js +1985 -249
  70. package/dist/impls/qdrant-vector.js +2 -0
  71. package/dist/impls/stripe-payments.js +3 -1
  72. package/dist/impls/supabase-psql.js +2 -0
  73. package/dist/impls/supabase-vector.js +2 -0
  74. package/dist/impls/tldv-meeting-recorder.js +2 -0
  75. package/dist/impls/twilio-sms.js +2 -0
  76. package/dist/index.d.ts +1 -0
  77. package/dist/index.js +2615 -283
  78. package/dist/messaging.d.ts +1 -0
  79. package/dist/messaging.js +3 -0
  80. package/dist/node/impls/async-event-queue.js +49 -0
  81. package/dist/node/impls/composio-fallback-resolver.js +580 -0
  82. package/dist/node/impls/composio-mcp.js +164 -0
  83. package/dist/node/impls/composio-proxies.js +311 -0
  84. package/dist/node/impls/composio-sdk.js +78 -0
  85. package/dist/node/impls/composio-types.js +54 -0
  86. package/dist/node/impls/elevenlabs-voice.js +3 -0
  87. package/dist/node/impls/fal-voice.js +3 -0
  88. package/dist/node/impls/fathom-meeting-recorder.js +3 -0
  89. package/dist/node/impls/fathom-meeting-recorder.mapper.js +3 -0
  90. package/dist/node/impls/fathom-meeting-recorder.utils.js +3 -0
  91. package/dist/node/impls/fathom-meeting-recorder.webhooks.js +3 -0
  92. package/dist/node/impls/fireflies-meeting-recorder.js +3 -0
  93. package/dist/node/impls/fireflies-meeting-recorder.queries.js +3 -0
  94. package/dist/node/impls/fireflies-meeting-recorder.utils.js +3 -0
  95. package/dist/node/impls/gcs-storage.js +3 -0
  96. package/dist/node/impls/gmail-inbound.js +3 -0
  97. package/dist/node/impls/gmail-outbound.js +3 -0
  98. package/dist/node/impls/google-calendar.js +3 -0
  99. package/dist/node/impls/gradium-voice.js +3 -0
  100. package/dist/node/impls/granola-meeting-recorder.js +3 -0
  101. package/dist/node/impls/granola-meeting-recorder.mcp.js +3 -0
  102. package/dist/node/impls/health/base-health-provider.js +509 -156
  103. package/dist/node/impls/health/hybrid-health-providers.js +1090 -0
  104. package/dist/node/impls/health/official-health-providers.js +970 -0
  105. package/dist/node/impls/health/provider-normalizers.js +289 -0
  106. package/dist/node/impls/health/providers.js +898 -184
  107. package/dist/node/impls/health-provider-factory.js +1012 -196
  108. package/dist/node/impls/index.js +2589 -259
  109. package/dist/node/impls/jira.js +3 -0
  110. package/dist/node/impls/linear.js +3 -0
  111. package/dist/node/impls/messaging-github.js +112 -0
  112. package/dist/node/impls/messaging-slack.js +82 -0
  113. package/dist/node/impls/messaging-whatsapp-meta.js +54 -0
  114. package/dist/node/impls/messaging-whatsapp-twilio.js +84 -0
  115. package/dist/node/impls/mistral-conversational.js +478 -0
  116. package/dist/node/impls/mistral-conversational.session.js +208 -0
  117. package/dist/node/impls/mistral-embedding.js +3 -0
  118. package/dist/node/impls/mistral-llm.js +3 -0
  119. package/dist/node/impls/mistral-stt.js +169 -0
  120. package/dist/node/impls/notion.js +3 -0
  121. package/dist/node/impls/posthog-reader.js +3 -0
  122. package/dist/node/impls/posthog-utils.js +3 -0
  123. package/dist/node/impls/posthog.js +3 -0
  124. package/dist/node/impls/postmark-email.js +3 -0
  125. package/dist/node/impls/powens-client.js +3 -0
  126. package/dist/node/impls/powens-openbanking.js +3 -0
  127. package/dist/node/impls/provider-factory.js +1986 -249
  128. package/dist/node/impls/qdrant-vector.js +3 -0
  129. package/dist/node/impls/stripe-payments.js +4 -1
  130. package/dist/node/impls/supabase-psql.js +3 -0
  131. package/dist/node/impls/supabase-vector.js +3 -0
  132. package/dist/node/impls/tldv-meeting-recorder.js +3 -0
  133. package/dist/node/impls/twilio-sms.js +3 -0
  134. package/dist/node/index.js +2616 -283
  135. package/dist/node/messaging.js +2 -0
  136. package/dist/node/secrets/provider.js +3 -0
  137. package/dist/secrets/provider.js +2 -0
  138. package/package.json +219 -14
@@ -0,0 +1,2 @@
1
+ // src/messaging.ts
2
+ export * from "@contractspec/lib.contracts-integrations";
@@ -1,3 +1,6 @@
1
+ import { createRequire } from "node:module";
2
+ var __require = /* @__PURE__ */ createRequire(import.meta.url);
3
+
1
4
  // src/secrets/provider.ts
2
5
  import {
3
6
  SecretProviderError,
@@ -1,4 +1,6 @@
1
1
  // @bun
2
+ var __require = import.meta.require;
3
+
2
4
  // src/secrets/provider.ts
3
5
  import {
4
6
  SecretProviderError,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/integration.providers-impls",
3
- "version": "2.10.0",
3
+ "version": "3.1.1",
4
4
  "description": "Integration provider implementations for email, payments, storage, and more",
5
5
  "keywords": [
6
6
  "contractspec",
@@ -32,16 +32,16 @@
32
32
  "typecheck": "tsc --noEmit"
33
33
  },
34
34
  "dependencies": {
35
- "@contractspec/lib.contracts-spec": "2.10.0",
36
- "@contractspec/lib.contracts-integrations": "2.10.0",
37
- "@contractspec/integration.runtime": "2.10.0",
38
- "@elevenlabs/elevenlabs-js": "^2.36.0",
39
- "@fal-ai/client": "^1.9.3",
35
+ "@contractspec/lib.contracts-spec": "3.1.1",
36
+ "@contractspec/lib.contracts-integrations": "3.1.1",
37
+ "@contractspec/integration.runtime": "3.1.1",
38
+ "@elevenlabs/elevenlabs-js": "^2.38.1",
39
+ "@fal-ai/client": "^1.9.4",
40
40
  "@google-cloud/storage": "^7.19.0",
41
- "@linear/sdk": "^75.0.0",
42
- "@mistralai/mistralai": "^1.14.0",
43
- "@notionhq/client": "^5.9.0",
44
- "posthog-node": "^5.25.0",
41
+ "@linear/sdk": "^76.0.0",
42
+ "@mistralai/mistralai": "^1.14.1",
43
+ "@notionhq/client": "^5.11.1",
44
+ "posthog-node": "^5.28.0",
45
45
  "@qdrant/js-client-rest": "^1.17.0",
46
46
  "@confiture-ai/gradium-sdk-js": "^0.1.1",
47
47
  "drizzle-orm": "^0.45.1",
@@ -49,15 +49,16 @@
49
49
  "googleapis": "^171.4.0",
50
50
  "postgres": "^3.4.8",
51
51
  "postmark": "^4.0.7",
52
- "stripe": "^20.3.1",
52
+ "stripe": "^20.4.0",
53
53
  "twilio": "^5.12.2",
54
+ "@composio/core": "latest",
54
55
  "zod": "^4.3.5"
55
56
  },
56
57
  "devDependencies": {
57
- "@types/bun": "1.3.9",
58
- "@contractspec/tool.typescript": "2.9.0",
58
+ "@types/bun": "1.3.10",
59
+ "@contractspec/tool.typescript": "3.1.0",
59
60
  "typescript": "^5.9.3",
60
- "@contractspec/tool.bun": "2.9.0"
61
+ "@contractspec/tool.bun": "3.1.0"
61
62
  },
62
63
  "exports": {
63
64
  ".": {
@@ -108,6 +109,42 @@
108
109
  "node": "./dist/node/impls/index.js",
109
110
  "default": "./dist/impls/index.js"
110
111
  },
112
+ "./impls/async-event-queue": {
113
+ "types": "./dist/impls/async-event-queue.d.ts",
114
+ "bun": "./dist/impls/async-event-queue.js",
115
+ "node": "./dist/node/impls/async-event-queue.js",
116
+ "default": "./dist/impls/async-event-queue.js"
117
+ },
118
+ "./impls/composio-fallback-resolver": {
119
+ "types": "./dist/impls/composio-fallback-resolver.d.ts",
120
+ "bun": "./dist/impls/composio-fallback-resolver.js",
121
+ "node": "./dist/node/impls/composio-fallback-resolver.js",
122
+ "default": "./dist/impls/composio-fallback-resolver.js"
123
+ },
124
+ "./impls/composio-mcp": {
125
+ "types": "./dist/impls/composio-mcp.d.ts",
126
+ "bun": "./dist/impls/composio-mcp.js",
127
+ "node": "./dist/node/impls/composio-mcp.js",
128
+ "default": "./dist/impls/composio-mcp.js"
129
+ },
130
+ "./impls/composio-proxies": {
131
+ "types": "./dist/impls/composio-proxies.d.ts",
132
+ "bun": "./dist/impls/composio-proxies.js",
133
+ "node": "./dist/node/impls/composio-proxies.js",
134
+ "default": "./dist/impls/composio-proxies.js"
135
+ },
136
+ "./impls/composio-sdk": {
137
+ "types": "./dist/impls/composio-sdk.d.ts",
138
+ "bun": "./dist/impls/composio-sdk.js",
139
+ "node": "./dist/node/impls/composio-sdk.js",
140
+ "default": "./dist/impls/composio-sdk.js"
141
+ },
142
+ "./impls/composio-types": {
143
+ "types": "./dist/impls/composio-types.d.ts",
144
+ "bun": "./dist/impls/composio-types.js",
145
+ "node": "./dist/node/impls/composio-types.js",
146
+ "default": "./dist/impls/composio-types.js"
147
+ },
111
148
  "./impls/elevenlabs-voice": {
112
149
  "types": "./dist/impls/elevenlabs-voice.d.ts",
113
150
  "bun": "./dist/impls/elevenlabs-voice.js",
@@ -234,6 +271,24 @@
234
271
  "node": "./dist/node/impls/health/base-health-provider.js",
235
272
  "default": "./dist/impls/health/base-health-provider.js"
236
273
  },
274
+ "./impls/health/hybrid-health-providers": {
275
+ "types": "./dist/impls/health/hybrid-health-providers.d.ts",
276
+ "bun": "./dist/impls/health/hybrid-health-providers.js",
277
+ "node": "./dist/node/impls/health/hybrid-health-providers.js",
278
+ "default": "./dist/impls/health/hybrid-health-providers.js"
279
+ },
280
+ "./impls/health/official-health-providers": {
281
+ "types": "./dist/impls/health/official-health-providers.d.ts",
282
+ "bun": "./dist/impls/health/official-health-providers.js",
283
+ "node": "./dist/node/impls/health/official-health-providers.js",
284
+ "default": "./dist/impls/health/official-health-providers.js"
285
+ },
286
+ "./impls/health/provider-normalizers": {
287
+ "types": "./dist/impls/health/provider-normalizers.d.ts",
288
+ "bun": "./dist/impls/health/provider-normalizers.js",
289
+ "node": "./dist/node/impls/health/provider-normalizers.js",
290
+ "default": "./dist/impls/health/provider-normalizers.js"
291
+ },
237
292
  "./impls/health/providers": {
238
293
  "types": "./dist/impls/health/providers.d.ts",
239
294
  "bun": "./dist/impls/health/providers.js",
@@ -258,6 +313,42 @@
258
313
  "node": "./dist/node/impls/linear.js",
259
314
  "default": "./dist/impls/linear.js"
260
315
  },
316
+ "./impls/messaging-github": {
317
+ "types": "./dist/impls/messaging-github.d.ts",
318
+ "bun": "./dist/impls/messaging-github.js",
319
+ "node": "./dist/node/impls/messaging-github.js",
320
+ "default": "./dist/impls/messaging-github.js"
321
+ },
322
+ "./impls/messaging-slack": {
323
+ "types": "./dist/impls/messaging-slack.d.ts",
324
+ "bun": "./dist/impls/messaging-slack.js",
325
+ "node": "./dist/node/impls/messaging-slack.js",
326
+ "default": "./dist/impls/messaging-slack.js"
327
+ },
328
+ "./impls/messaging-whatsapp-meta": {
329
+ "types": "./dist/impls/messaging-whatsapp-meta.d.ts",
330
+ "bun": "./dist/impls/messaging-whatsapp-meta.js",
331
+ "node": "./dist/node/impls/messaging-whatsapp-meta.js",
332
+ "default": "./dist/impls/messaging-whatsapp-meta.js"
333
+ },
334
+ "./impls/messaging-whatsapp-twilio": {
335
+ "types": "./dist/impls/messaging-whatsapp-twilio.d.ts",
336
+ "bun": "./dist/impls/messaging-whatsapp-twilio.js",
337
+ "node": "./dist/node/impls/messaging-whatsapp-twilio.js",
338
+ "default": "./dist/impls/messaging-whatsapp-twilio.js"
339
+ },
340
+ "./impls/mistral-conversational": {
341
+ "types": "./dist/impls/mistral-conversational.d.ts",
342
+ "bun": "./dist/impls/mistral-conversational.js",
343
+ "node": "./dist/node/impls/mistral-conversational.js",
344
+ "default": "./dist/impls/mistral-conversational.js"
345
+ },
346
+ "./impls/mistral-conversational.session": {
347
+ "types": "./dist/impls/mistral-conversational.session.d.ts",
348
+ "bun": "./dist/impls/mistral-conversational.session.js",
349
+ "node": "./dist/node/impls/mistral-conversational.session.js",
350
+ "default": "./dist/impls/mistral-conversational.session.js"
351
+ },
261
352
  "./impls/mistral-embedding": {
262
353
  "types": "./dist/impls/mistral-embedding.d.ts",
263
354
  "bun": "./dist/impls/mistral-embedding.js",
@@ -270,6 +361,12 @@
270
361
  "node": "./dist/node/impls/mistral-llm.js",
271
362
  "default": "./dist/impls/mistral-llm.js"
272
363
  },
364
+ "./impls/mistral-stt": {
365
+ "types": "./dist/impls/mistral-stt.d.ts",
366
+ "bun": "./dist/impls/mistral-stt.js",
367
+ "node": "./dist/node/impls/mistral-stt.js",
368
+ "default": "./dist/impls/mistral-stt.js"
369
+ },
273
370
  "./impls/notion": {
274
371
  "types": "./dist/impls/notion.d.ts",
275
372
  "bun": "./dist/impls/notion.js",
@@ -366,6 +463,12 @@
366
463
  "node": "./dist/node/meeting-recorder.js",
367
464
  "default": "./dist/meeting-recorder.js"
368
465
  },
466
+ "./messaging": {
467
+ "types": "./dist/messaging.d.ts",
468
+ "bun": "./dist/messaging.js",
469
+ "node": "./dist/node/messaging.js",
470
+ "default": "./dist/messaging.js"
471
+ },
369
472
  "./openbanking": {
370
473
  "types": "./dist/openbanking.d.ts",
371
474
  "bun": "./dist/openbanking.js",
@@ -472,6 +575,42 @@
472
575
  "node": "./dist/node/impls/index.js",
473
576
  "default": "./dist/impls/index.js"
474
577
  },
578
+ "./impls/async-event-queue": {
579
+ "types": "./dist/impls/async-event-queue.d.ts",
580
+ "bun": "./dist/impls/async-event-queue.js",
581
+ "node": "./dist/node/impls/async-event-queue.js",
582
+ "default": "./dist/impls/async-event-queue.js"
583
+ },
584
+ "./impls/composio-fallback-resolver": {
585
+ "types": "./dist/impls/composio-fallback-resolver.d.ts",
586
+ "bun": "./dist/impls/composio-fallback-resolver.js",
587
+ "node": "./dist/node/impls/composio-fallback-resolver.js",
588
+ "default": "./dist/impls/composio-fallback-resolver.js"
589
+ },
590
+ "./impls/composio-mcp": {
591
+ "types": "./dist/impls/composio-mcp.d.ts",
592
+ "bun": "./dist/impls/composio-mcp.js",
593
+ "node": "./dist/node/impls/composio-mcp.js",
594
+ "default": "./dist/impls/composio-mcp.js"
595
+ },
596
+ "./impls/composio-proxies": {
597
+ "types": "./dist/impls/composio-proxies.d.ts",
598
+ "bun": "./dist/impls/composio-proxies.js",
599
+ "node": "./dist/node/impls/composio-proxies.js",
600
+ "default": "./dist/impls/composio-proxies.js"
601
+ },
602
+ "./impls/composio-sdk": {
603
+ "types": "./dist/impls/composio-sdk.d.ts",
604
+ "bun": "./dist/impls/composio-sdk.js",
605
+ "node": "./dist/node/impls/composio-sdk.js",
606
+ "default": "./dist/impls/composio-sdk.js"
607
+ },
608
+ "./impls/composio-types": {
609
+ "types": "./dist/impls/composio-types.d.ts",
610
+ "bun": "./dist/impls/composio-types.js",
611
+ "node": "./dist/node/impls/composio-types.js",
612
+ "default": "./dist/impls/composio-types.js"
613
+ },
475
614
  "./impls/elevenlabs-voice": {
476
615
  "types": "./dist/impls/elevenlabs-voice.d.ts",
477
616
  "bun": "./dist/impls/elevenlabs-voice.js",
@@ -598,6 +737,24 @@
598
737
  "node": "./dist/node/impls/health/base-health-provider.js",
599
738
  "default": "./dist/impls/health/base-health-provider.js"
600
739
  },
740
+ "./impls/health/hybrid-health-providers": {
741
+ "types": "./dist/impls/health/hybrid-health-providers.d.ts",
742
+ "bun": "./dist/impls/health/hybrid-health-providers.js",
743
+ "node": "./dist/node/impls/health/hybrid-health-providers.js",
744
+ "default": "./dist/impls/health/hybrid-health-providers.js"
745
+ },
746
+ "./impls/health/official-health-providers": {
747
+ "types": "./dist/impls/health/official-health-providers.d.ts",
748
+ "bun": "./dist/impls/health/official-health-providers.js",
749
+ "node": "./dist/node/impls/health/official-health-providers.js",
750
+ "default": "./dist/impls/health/official-health-providers.js"
751
+ },
752
+ "./impls/health/provider-normalizers": {
753
+ "types": "./dist/impls/health/provider-normalizers.d.ts",
754
+ "bun": "./dist/impls/health/provider-normalizers.js",
755
+ "node": "./dist/node/impls/health/provider-normalizers.js",
756
+ "default": "./dist/impls/health/provider-normalizers.js"
757
+ },
601
758
  "./impls/health/providers": {
602
759
  "types": "./dist/impls/health/providers.d.ts",
603
760
  "bun": "./dist/impls/health/providers.js",
@@ -622,6 +779,42 @@
622
779
  "node": "./dist/node/impls/linear.js",
623
780
  "default": "./dist/impls/linear.js"
624
781
  },
782
+ "./impls/messaging-github": {
783
+ "types": "./dist/impls/messaging-github.d.ts",
784
+ "bun": "./dist/impls/messaging-github.js",
785
+ "node": "./dist/node/impls/messaging-github.js",
786
+ "default": "./dist/impls/messaging-github.js"
787
+ },
788
+ "./impls/messaging-slack": {
789
+ "types": "./dist/impls/messaging-slack.d.ts",
790
+ "bun": "./dist/impls/messaging-slack.js",
791
+ "node": "./dist/node/impls/messaging-slack.js",
792
+ "default": "./dist/impls/messaging-slack.js"
793
+ },
794
+ "./impls/messaging-whatsapp-meta": {
795
+ "types": "./dist/impls/messaging-whatsapp-meta.d.ts",
796
+ "bun": "./dist/impls/messaging-whatsapp-meta.js",
797
+ "node": "./dist/node/impls/messaging-whatsapp-meta.js",
798
+ "default": "./dist/impls/messaging-whatsapp-meta.js"
799
+ },
800
+ "./impls/messaging-whatsapp-twilio": {
801
+ "types": "./dist/impls/messaging-whatsapp-twilio.d.ts",
802
+ "bun": "./dist/impls/messaging-whatsapp-twilio.js",
803
+ "node": "./dist/node/impls/messaging-whatsapp-twilio.js",
804
+ "default": "./dist/impls/messaging-whatsapp-twilio.js"
805
+ },
806
+ "./impls/mistral-conversational": {
807
+ "types": "./dist/impls/mistral-conversational.d.ts",
808
+ "bun": "./dist/impls/mistral-conversational.js",
809
+ "node": "./dist/node/impls/mistral-conversational.js",
810
+ "default": "./dist/impls/mistral-conversational.js"
811
+ },
812
+ "./impls/mistral-conversational.session": {
813
+ "types": "./dist/impls/mistral-conversational.session.d.ts",
814
+ "bun": "./dist/impls/mistral-conversational.session.js",
815
+ "node": "./dist/node/impls/mistral-conversational.session.js",
816
+ "default": "./dist/impls/mistral-conversational.session.js"
817
+ },
625
818
  "./impls/mistral-embedding": {
626
819
  "types": "./dist/impls/mistral-embedding.d.ts",
627
820
  "bun": "./dist/impls/mistral-embedding.js",
@@ -634,6 +827,12 @@
634
827
  "node": "./dist/node/impls/mistral-llm.js",
635
828
  "default": "./dist/impls/mistral-llm.js"
636
829
  },
830
+ "./impls/mistral-stt": {
831
+ "types": "./dist/impls/mistral-stt.d.ts",
832
+ "bun": "./dist/impls/mistral-stt.js",
833
+ "node": "./dist/node/impls/mistral-stt.js",
834
+ "default": "./dist/impls/mistral-stt.js"
835
+ },
637
836
  "./impls/notion": {
638
837
  "types": "./dist/impls/notion.d.ts",
639
838
  "bun": "./dist/impls/notion.js",
@@ -730,6 +929,12 @@
730
929
  "node": "./dist/node/meeting-recorder.js",
731
930
  "default": "./dist/meeting-recorder.js"
732
931
  },
932
+ "./messaging": {
933
+ "types": "./dist/messaging.d.ts",
934
+ "bun": "./dist/messaging.js",
935
+ "node": "./dist/node/messaging.js",
936
+ "default": "./dist/messaging.js"
937
+ },
733
938
  "./openbanking": {
734
939
  "types": "./dist/openbanking.d.ts",
735
940
  "bun": "./dist/openbanking.js",