@contractspec/integration.providers-impls 1.59.0 → 1.61.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 +397 -117
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/integration.providers-impls",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "Integration provider implementations for email, payments, storage, and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"typecheck": "tsc --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@contractspec/lib.contracts": "1.
|
|
36
|
-
"@contractspec/integration.runtime": "1.
|
|
35
|
+
"@contractspec/lib.contracts": "1.61.0",
|
|
36
|
+
"@contractspec/integration.runtime": "1.61.0",
|
|
37
37
|
"@elevenlabs/elevenlabs-js": "^2.34.0",
|
|
38
38
|
"@fal-ai/client": "^1.9.0",
|
|
39
39
|
"@google-cloud/storage": "^7.19.0",
|
|
@@ -54,67 +54,347 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/bun": "latest",
|
|
57
|
-
"@contractspec/tool.typescript": "1.
|
|
57
|
+
"@contractspec/tool.typescript": "1.61.0",
|
|
58
58
|
"typescript": "^5.9.3",
|
|
59
|
-
"@contractspec/tool.bun": "1.
|
|
59
|
+
"@contractspec/tool.bun": "1.60.0"
|
|
60
60
|
},
|
|
61
61
|
"exports": {
|
|
62
|
-
".":
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"./
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"./
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"./
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"./
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"./
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"./impls
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"./impls/
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"./
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
"./
|
|
117
|
-
|
|
62
|
+
".": {
|
|
63
|
+
"types": "./dist/index.d.ts",
|
|
64
|
+
"bun": "./dist/index.js",
|
|
65
|
+
"node": "./dist/node/index.js",
|
|
66
|
+
"default": "./dist/index.js"
|
|
67
|
+
},
|
|
68
|
+
"./analytics": {
|
|
69
|
+
"types": "./dist/analytics.d.ts",
|
|
70
|
+
"bun": "./dist/analytics.js",
|
|
71
|
+
"node": "./dist/node/analytics.js",
|
|
72
|
+
"default": "./dist/analytics.js"
|
|
73
|
+
},
|
|
74
|
+
"./calendar": {
|
|
75
|
+
"types": "./dist/calendar.d.ts",
|
|
76
|
+
"bun": "./dist/calendar.js",
|
|
77
|
+
"node": "./dist/node/calendar.js",
|
|
78
|
+
"default": "./dist/calendar.js"
|
|
79
|
+
},
|
|
80
|
+
"./database": {
|
|
81
|
+
"types": "./dist/database.d.ts",
|
|
82
|
+
"bun": "./dist/database.js",
|
|
83
|
+
"node": "./dist/node/database.js",
|
|
84
|
+
"default": "./dist/database.js"
|
|
85
|
+
},
|
|
86
|
+
"./email": {
|
|
87
|
+
"types": "./dist/email.d.ts",
|
|
88
|
+
"bun": "./dist/email.js",
|
|
89
|
+
"node": "./dist/node/email.js",
|
|
90
|
+
"default": "./dist/email.js"
|
|
91
|
+
},
|
|
92
|
+
"./embedding": {
|
|
93
|
+
"types": "./dist/embedding.d.ts",
|
|
94
|
+
"bun": "./dist/embedding.js",
|
|
95
|
+
"node": "./dist/node/embedding.js",
|
|
96
|
+
"default": "./dist/embedding.js"
|
|
97
|
+
},
|
|
98
|
+
"./impls": {
|
|
99
|
+
"types": "./dist/impls/index.d.ts",
|
|
100
|
+
"bun": "./dist/impls/index.js",
|
|
101
|
+
"node": "./dist/node/impls/index.js",
|
|
102
|
+
"default": "./dist/impls/index.js"
|
|
103
|
+
},
|
|
104
|
+
"./impls/elevenlabs-voice": {
|
|
105
|
+
"types": "./dist/impls/elevenlabs-voice.d.ts",
|
|
106
|
+
"bun": "./dist/impls/elevenlabs-voice.js",
|
|
107
|
+
"node": "./dist/node/impls/elevenlabs-voice.js",
|
|
108
|
+
"default": "./dist/impls/elevenlabs-voice.js"
|
|
109
|
+
},
|
|
110
|
+
"./impls/fal-voice": {
|
|
111
|
+
"types": "./dist/impls/fal-voice.d.ts",
|
|
112
|
+
"bun": "./dist/impls/fal-voice.js",
|
|
113
|
+
"node": "./dist/node/impls/fal-voice.js",
|
|
114
|
+
"default": "./dist/impls/fal-voice.js"
|
|
115
|
+
},
|
|
116
|
+
"./impls/fathom-meeting-recorder": {
|
|
117
|
+
"types": "./dist/impls/fathom-meeting-recorder.d.ts",
|
|
118
|
+
"bun": "./dist/impls/fathom-meeting-recorder.js",
|
|
119
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.js",
|
|
120
|
+
"default": "./dist/impls/fathom-meeting-recorder.js"
|
|
121
|
+
},
|
|
122
|
+
"./impls/fathom-meeting-recorder.mapper": {
|
|
123
|
+
"types": "./dist/impls/fathom-meeting-recorder.mapper.d.ts",
|
|
124
|
+
"bun": "./dist/impls/fathom-meeting-recorder.mapper.js",
|
|
125
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.mapper.js",
|
|
126
|
+
"default": "./dist/impls/fathom-meeting-recorder.mapper.js"
|
|
127
|
+
},
|
|
128
|
+
"./impls/fathom-meeting-recorder.types": {
|
|
129
|
+
"types": "./dist/impls/fathom-meeting-recorder.types.d.ts",
|
|
130
|
+
"bun": "./dist/impls/fathom-meeting-recorder.types.js",
|
|
131
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.types.js",
|
|
132
|
+
"default": "./dist/impls/fathom-meeting-recorder.types.js"
|
|
133
|
+
},
|
|
134
|
+
"./impls/fathom-meeting-recorder.utils": {
|
|
135
|
+
"types": "./dist/impls/fathom-meeting-recorder.utils.d.ts",
|
|
136
|
+
"bun": "./dist/impls/fathom-meeting-recorder.utils.js",
|
|
137
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.utils.js",
|
|
138
|
+
"default": "./dist/impls/fathom-meeting-recorder.utils.js"
|
|
139
|
+
},
|
|
140
|
+
"./impls/fathom-meeting-recorder.webhooks": {
|
|
141
|
+
"types": "./dist/impls/fathom-meeting-recorder.webhooks.d.ts",
|
|
142
|
+
"bun": "./dist/impls/fathom-meeting-recorder.webhooks.js",
|
|
143
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.webhooks.js",
|
|
144
|
+
"default": "./dist/impls/fathom-meeting-recorder.webhooks.js"
|
|
145
|
+
},
|
|
146
|
+
"./impls/fireflies-meeting-recorder": {
|
|
147
|
+
"types": "./dist/impls/fireflies-meeting-recorder.d.ts",
|
|
148
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.js",
|
|
149
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.js",
|
|
150
|
+
"default": "./dist/impls/fireflies-meeting-recorder.js"
|
|
151
|
+
},
|
|
152
|
+
"./impls/fireflies-meeting-recorder.queries": {
|
|
153
|
+
"types": "./dist/impls/fireflies-meeting-recorder.queries.d.ts",
|
|
154
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.queries.js",
|
|
155
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.queries.js",
|
|
156
|
+
"default": "./dist/impls/fireflies-meeting-recorder.queries.js"
|
|
157
|
+
},
|
|
158
|
+
"./impls/fireflies-meeting-recorder.types": {
|
|
159
|
+
"types": "./dist/impls/fireflies-meeting-recorder.types.d.ts",
|
|
160
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.types.js",
|
|
161
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.types.js",
|
|
162
|
+
"default": "./dist/impls/fireflies-meeting-recorder.types.js"
|
|
163
|
+
},
|
|
164
|
+
"./impls/fireflies-meeting-recorder.utils": {
|
|
165
|
+
"types": "./dist/impls/fireflies-meeting-recorder.utils.d.ts",
|
|
166
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.utils.js",
|
|
167
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.utils.js",
|
|
168
|
+
"default": "./dist/impls/fireflies-meeting-recorder.utils.js"
|
|
169
|
+
},
|
|
170
|
+
"./impls/gcs-storage": {
|
|
171
|
+
"types": "./dist/impls/gcs-storage.d.ts",
|
|
172
|
+
"bun": "./dist/impls/gcs-storage.js",
|
|
173
|
+
"node": "./dist/node/impls/gcs-storage.js",
|
|
174
|
+
"default": "./dist/impls/gcs-storage.js"
|
|
175
|
+
},
|
|
176
|
+
"./impls/gmail-inbound": {
|
|
177
|
+
"types": "./dist/impls/gmail-inbound.d.ts",
|
|
178
|
+
"bun": "./dist/impls/gmail-inbound.js",
|
|
179
|
+
"node": "./dist/node/impls/gmail-inbound.js",
|
|
180
|
+
"default": "./dist/impls/gmail-inbound.js"
|
|
181
|
+
},
|
|
182
|
+
"./impls/gmail-outbound": {
|
|
183
|
+
"types": "./dist/impls/gmail-outbound.d.ts",
|
|
184
|
+
"bun": "./dist/impls/gmail-outbound.js",
|
|
185
|
+
"node": "./dist/node/impls/gmail-outbound.js",
|
|
186
|
+
"default": "./dist/impls/gmail-outbound.js"
|
|
187
|
+
},
|
|
188
|
+
"./impls/google-calendar": {
|
|
189
|
+
"types": "./dist/impls/google-calendar.d.ts",
|
|
190
|
+
"bun": "./dist/impls/google-calendar.js",
|
|
191
|
+
"node": "./dist/node/impls/google-calendar.js",
|
|
192
|
+
"default": "./dist/impls/google-calendar.js"
|
|
193
|
+
},
|
|
194
|
+
"./impls/gradium-voice": {
|
|
195
|
+
"types": "./dist/impls/gradium-voice.d.ts",
|
|
196
|
+
"bun": "./dist/impls/gradium-voice.js",
|
|
197
|
+
"node": "./dist/node/impls/gradium-voice.js",
|
|
198
|
+
"default": "./dist/impls/gradium-voice.js"
|
|
199
|
+
},
|
|
200
|
+
"./impls/granola-meeting-recorder": {
|
|
201
|
+
"types": "./dist/impls/granola-meeting-recorder.d.ts",
|
|
202
|
+
"bun": "./dist/impls/granola-meeting-recorder.js",
|
|
203
|
+
"node": "./dist/node/impls/granola-meeting-recorder.js",
|
|
204
|
+
"default": "./dist/impls/granola-meeting-recorder.js"
|
|
205
|
+
},
|
|
206
|
+
"./impls/granola-meeting-recorder.mcp": {
|
|
207
|
+
"types": "./dist/impls/granola-meeting-recorder.mcp.d.ts",
|
|
208
|
+
"bun": "./dist/impls/granola-meeting-recorder.mcp.js",
|
|
209
|
+
"node": "./dist/node/impls/granola-meeting-recorder.mcp.js",
|
|
210
|
+
"default": "./dist/impls/granola-meeting-recorder.mcp.js"
|
|
211
|
+
},
|
|
212
|
+
"./impls/granola-meeting-recorder.types": {
|
|
213
|
+
"types": "./dist/impls/granola-meeting-recorder.types.d.ts",
|
|
214
|
+
"bun": "./dist/impls/granola-meeting-recorder.types.js",
|
|
215
|
+
"node": "./dist/node/impls/granola-meeting-recorder.types.js",
|
|
216
|
+
"default": "./dist/impls/granola-meeting-recorder.types.js"
|
|
217
|
+
},
|
|
218
|
+
"./impls/index": {
|
|
219
|
+
"types": "./dist/impls/index.d.ts",
|
|
220
|
+
"bun": "./dist/impls/index.js",
|
|
221
|
+
"node": "./dist/node/impls/index.js",
|
|
222
|
+
"default": "./dist/impls/index.js"
|
|
223
|
+
},
|
|
224
|
+
"./impls/jira": {
|
|
225
|
+
"types": "./dist/impls/jira.d.ts",
|
|
226
|
+
"bun": "./dist/impls/jira.js",
|
|
227
|
+
"node": "./dist/node/impls/jira.js",
|
|
228
|
+
"default": "./dist/impls/jira.js"
|
|
229
|
+
},
|
|
230
|
+
"./impls/linear": {
|
|
231
|
+
"types": "./dist/impls/linear.d.ts",
|
|
232
|
+
"bun": "./dist/impls/linear.js",
|
|
233
|
+
"node": "./dist/node/impls/linear.js",
|
|
234
|
+
"default": "./dist/impls/linear.js"
|
|
235
|
+
},
|
|
236
|
+
"./impls/mistral-embedding": {
|
|
237
|
+
"types": "./dist/impls/mistral-embedding.d.ts",
|
|
238
|
+
"bun": "./dist/impls/mistral-embedding.js",
|
|
239
|
+
"node": "./dist/node/impls/mistral-embedding.js",
|
|
240
|
+
"default": "./dist/impls/mistral-embedding.js"
|
|
241
|
+
},
|
|
242
|
+
"./impls/mistral-llm": {
|
|
243
|
+
"types": "./dist/impls/mistral-llm.d.ts",
|
|
244
|
+
"bun": "./dist/impls/mistral-llm.js",
|
|
245
|
+
"node": "./dist/node/impls/mistral-llm.js",
|
|
246
|
+
"default": "./dist/impls/mistral-llm.js"
|
|
247
|
+
},
|
|
248
|
+
"./impls/notion": {
|
|
249
|
+
"types": "./dist/impls/notion.d.ts",
|
|
250
|
+
"bun": "./dist/impls/notion.js",
|
|
251
|
+
"node": "./dist/node/impls/notion.js",
|
|
252
|
+
"default": "./dist/impls/notion.js"
|
|
253
|
+
},
|
|
254
|
+
"./impls/posthog": {
|
|
255
|
+
"types": "./dist/impls/posthog.d.ts",
|
|
256
|
+
"bun": "./dist/impls/posthog.js",
|
|
257
|
+
"node": "./dist/node/impls/posthog.js",
|
|
258
|
+
"default": "./dist/impls/posthog.js"
|
|
259
|
+
},
|
|
260
|
+
"./impls/posthog-reader": {
|
|
261
|
+
"types": "./dist/impls/posthog-reader.d.ts",
|
|
262
|
+
"bun": "./dist/impls/posthog-reader.js",
|
|
263
|
+
"node": "./dist/node/impls/posthog-reader.js",
|
|
264
|
+
"default": "./dist/impls/posthog-reader.js"
|
|
265
|
+
},
|
|
266
|
+
"./impls/posthog-utils": {
|
|
267
|
+
"types": "./dist/impls/posthog-utils.d.ts",
|
|
268
|
+
"bun": "./dist/impls/posthog-utils.js",
|
|
269
|
+
"node": "./dist/node/impls/posthog-utils.js",
|
|
270
|
+
"default": "./dist/impls/posthog-utils.js"
|
|
271
|
+
},
|
|
272
|
+
"./impls/postmark-email": {
|
|
273
|
+
"types": "./dist/impls/postmark-email.d.ts",
|
|
274
|
+
"bun": "./dist/impls/postmark-email.js",
|
|
275
|
+
"node": "./dist/node/impls/postmark-email.js",
|
|
276
|
+
"default": "./dist/impls/postmark-email.js"
|
|
277
|
+
},
|
|
278
|
+
"./impls/powens-client": {
|
|
279
|
+
"types": "./dist/impls/powens-client.d.ts",
|
|
280
|
+
"bun": "./dist/impls/powens-client.js",
|
|
281
|
+
"node": "./dist/node/impls/powens-client.js",
|
|
282
|
+
"default": "./dist/impls/powens-client.js"
|
|
283
|
+
},
|
|
284
|
+
"./impls/powens-openbanking": {
|
|
285
|
+
"types": "./dist/impls/powens-openbanking.d.ts",
|
|
286
|
+
"bun": "./dist/impls/powens-openbanking.js",
|
|
287
|
+
"node": "./dist/node/impls/powens-openbanking.js",
|
|
288
|
+
"default": "./dist/impls/powens-openbanking.js"
|
|
289
|
+
},
|
|
290
|
+
"./impls/provider-factory": {
|
|
291
|
+
"types": "./dist/impls/provider-factory.d.ts",
|
|
292
|
+
"bun": "./dist/impls/provider-factory.js",
|
|
293
|
+
"node": "./dist/node/impls/provider-factory.js",
|
|
294
|
+
"default": "./dist/impls/provider-factory.js"
|
|
295
|
+
},
|
|
296
|
+
"./impls/qdrant-vector": {
|
|
297
|
+
"types": "./dist/impls/qdrant-vector.d.ts",
|
|
298
|
+
"bun": "./dist/impls/qdrant-vector.js",
|
|
299
|
+
"node": "./dist/node/impls/qdrant-vector.js",
|
|
300
|
+
"default": "./dist/impls/qdrant-vector.js"
|
|
301
|
+
},
|
|
302
|
+
"./impls/stripe-payments": {
|
|
303
|
+
"types": "./dist/impls/stripe-payments.d.ts",
|
|
304
|
+
"bun": "./dist/impls/stripe-payments.js",
|
|
305
|
+
"node": "./dist/node/impls/stripe-payments.js",
|
|
306
|
+
"default": "./dist/impls/stripe-payments.js"
|
|
307
|
+
},
|
|
308
|
+
"./impls/supabase-psql": {
|
|
309
|
+
"types": "./dist/impls/supabase-psql.d.ts",
|
|
310
|
+
"bun": "./dist/impls/supabase-psql.js",
|
|
311
|
+
"node": "./dist/node/impls/supabase-psql.js",
|
|
312
|
+
"default": "./dist/impls/supabase-psql.js"
|
|
313
|
+
},
|
|
314
|
+
"./impls/supabase-vector": {
|
|
315
|
+
"types": "./dist/impls/supabase-vector.d.ts",
|
|
316
|
+
"bun": "./dist/impls/supabase-vector.js",
|
|
317
|
+
"node": "./dist/node/impls/supabase-vector.js",
|
|
318
|
+
"default": "./dist/impls/supabase-vector.js"
|
|
319
|
+
},
|
|
320
|
+
"./impls/tldv-meeting-recorder": {
|
|
321
|
+
"types": "./dist/impls/tldv-meeting-recorder.d.ts",
|
|
322
|
+
"bun": "./dist/impls/tldv-meeting-recorder.js",
|
|
323
|
+
"node": "./dist/node/impls/tldv-meeting-recorder.js",
|
|
324
|
+
"default": "./dist/impls/tldv-meeting-recorder.js"
|
|
325
|
+
},
|
|
326
|
+
"./impls/twilio-sms": {
|
|
327
|
+
"types": "./dist/impls/twilio-sms.d.ts",
|
|
328
|
+
"bun": "./dist/impls/twilio-sms.js",
|
|
329
|
+
"node": "./dist/node/impls/twilio-sms.js",
|
|
330
|
+
"default": "./dist/impls/twilio-sms.js"
|
|
331
|
+
},
|
|
332
|
+
"./llm": {
|
|
333
|
+
"types": "./dist/llm.d.ts",
|
|
334
|
+
"bun": "./dist/llm.js",
|
|
335
|
+
"node": "./dist/node/llm.js",
|
|
336
|
+
"default": "./dist/llm.js"
|
|
337
|
+
},
|
|
338
|
+
"./meeting-recorder": {
|
|
339
|
+
"types": "./dist/meeting-recorder.d.ts",
|
|
340
|
+
"bun": "./dist/meeting-recorder.js",
|
|
341
|
+
"node": "./dist/node/meeting-recorder.js",
|
|
342
|
+
"default": "./dist/meeting-recorder.js"
|
|
343
|
+
},
|
|
344
|
+
"./openbanking": {
|
|
345
|
+
"types": "./dist/openbanking.d.ts",
|
|
346
|
+
"bun": "./dist/openbanking.js",
|
|
347
|
+
"node": "./dist/node/openbanking.js",
|
|
348
|
+
"default": "./dist/openbanking.js"
|
|
349
|
+
},
|
|
350
|
+
"./payments": {
|
|
351
|
+
"types": "./dist/payments.d.ts",
|
|
352
|
+
"bun": "./dist/payments.js",
|
|
353
|
+
"node": "./dist/node/payments.js",
|
|
354
|
+
"default": "./dist/payments.js"
|
|
355
|
+
},
|
|
356
|
+
"./project-management": {
|
|
357
|
+
"types": "./dist/project-management.d.ts",
|
|
358
|
+
"bun": "./dist/project-management.js",
|
|
359
|
+
"node": "./dist/node/project-management.js",
|
|
360
|
+
"default": "./dist/project-management.js"
|
|
361
|
+
},
|
|
362
|
+
"./runtime": {
|
|
363
|
+
"types": "./dist/runtime.d.ts",
|
|
364
|
+
"bun": "./dist/runtime.js",
|
|
365
|
+
"node": "./dist/node/runtime.js",
|
|
366
|
+
"default": "./dist/runtime.js"
|
|
367
|
+
},
|
|
368
|
+
"./secrets/provider": {
|
|
369
|
+
"types": "./dist/secrets/provider.d.ts",
|
|
370
|
+
"bun": "./dist/secrets/provider.js",
|
|
371
|
+
"node": "./dist/node/secrets/provider.js",
|
|
372
|
+
"default": "./dist/secrets/provider.js"
|
|
373
|
+
},
|
|
374
|
+
"./sms": {
|
|
375
|
+
"types": "./dist/sms.d.ts",
|
|
376
|
+
"bun": "./dist/sms.js",
|
|
377
|
+
"node": "./dist/node/sms.js",
|
|
378
|
+
"default": "./dist/sms.js"
|
|
379
|
+
},
|
|
380
|
+
"./storage": {
|
|
381
|
+
"types": "./dist/storage.d.ts",
|
|
382
|
+
"bun": "./dist/storage.js",
|
|
383
|
+
"node": "./dist/node/storage.js",
|
|
384
|
+
"default": "./dist/storage.js"
|
|
385
|
+
},
|
|
386
|
+
"./vector-store": {
|
|
387
|
+
"types": "./dist/vector-store.d.ts",
|
|
388
|
+
"bun": "./dist/vector-store.js",
|
|
389
|
+
"node": "./dist/node/vector-store.js",
|
|
390
|
+
"default": "./dist/vector-store.js"
|
|
391
|
+
},
|
|
392
|
+
"./voice": {
|
|
393
|
+
"types": "./dist/voice.d.ts",
|
|
394
|
+
"bun": "./dist/voice.js",
|
|
395
|
+
"node": "./dist/node/voice.js",
|
|
396
|
+
"default": "./dist/voice.js"
|
|
397
|
+
}
|
|
118
398
|
},
|
|
119
399
|
"publishConfig": {
|
|
120
400
|
"access": "public",
|
|
@@ -122,337 +402,337 @@
|
|
|
122
402
|
".": {
|
|
123
403
|
"types": "./dist/index.d.ts",
|
|
124
404
|
"bun": "./dist/index.js",
|
|
125
|
-
"node": "./dist/node/index.
|
|
405
|
+
"node": "./dist/node/index.js",
|
|
126
406
|
"default": "./dist/index.js"
|
|
127
407
|
},
|
|
128
408
|
"./analytics": {
|
|
129
409
|
"types": "./dist/analytics.d.ts",
|
|
130
410
|
"bun": "./dist/analytics.js",
|
|
131
|
-
"node": "./dist/node/analytics.
|
|
411
|
+
"node": "./dist/node/analytics.js",
|
|
132
412
|
"default": "./dist/analytics.js"
|
|
133
413
|
},
|
|
134
414
|
"./calendar": {
|
|
135
415
|
"types": "./dist/calendar.d.ts",
|
|
136
416
|
"bun": "./dist/calendar.js",
|
|
137
|
-
"node": "./dist/node/calendar.
|
|
417
|
+
"node": "./dist/node/calendar.js",
|
|
138
418
|
"default": "./dist/calendar.js"
|
|
139
419
|
},
|
|
140
420
|
"./database": {
|
|
141
421
|
"types": "./dist/database.d.ts",
|
|
142
422
|
"bun": "./dist/database.js",
|
|
143
|
-
"node": "./dist/node/database.
|
|
423
|
+
"node": "./dist/node/database.js",
|
|
144
424
|
"default": "./dist/database.js"
|
|
145
425
|
},
|
|
146
426
|
"./email": {
|
|
147
427
|
"types": "./dist/email.d.ts",
|
|
148
428
|
"bun": "./dist/email.js",
|
|
149
|
-
"node": "./dist/node/email.
|
|
429
|
+
"node": "./dist/node/email.js",
|
|
150
430
|
"default": "./dist/email.js"
|
|
151
431
|
},
|
|
152
432
|
"./embedding": {
|
|
153
433
|
"types": "./dist/embedding.d.ts",
|
|
154
434
|
"bun": "./dist/embedding.js",
|
|
155
|
-
"node": "./dist/node/embedding.
|
|
435
|
+
"node": "./dist/node/embedding.js",
|
|
156
436
|
"default": "./dist/embedding.js"
|
|
157
437
|
},
|
|
158
438
|
"./impls": {
|
|
159
439
|
"types": "./dist/impls/index.d.ts",
|
|
160
440
|
"bun": "./dist/impls/index.js",
|
|
161
|
-
"node": "./dist/node/impls/index.
|
|
441
|
+
"node": "./dist/node/impls/index.js",
|
|
162
442
|
"default": "./dist/impls/index.js"
|
|
163
443
|
},
|
|
164
444
|
"./impls/elevenlabs-voice": {
|
|
165
445
|
"types": "./dist/impls/elevenlabs-voice.d.ts",
|
|
166
446
|
"bun": "./dist/impls/elevenlabs-voice.js",
|
|
167
|
-
"node": "./dist/node/impls/elevenlabs-voice.
|
|
447
|
+
"node": "./dist/node/impls/elevenlabs-voice.js",
|
|
168
448
|
"default": "./dist/impls/elevenlabs-voice.js"
|
|
169
449
|
},
|
|
170
450
|
"./impls/fal-voice": {
|
|
171
451
|
"types": "./dist/impls/fal-voice.d.ts",
|
|
172
452
|
"bun": "./dist/impls/fal-voice.js",
|
|
173
|
-
"node": "./dist/node/impls/fal-voice.
|
|
453
|
+
"node": "./dist/node/impls/fal-voice.js",
|
|
174
454
|
"default": "./dist/impls/fal-voice.js"
|
|
175
455
|
},
|
|
176
456
|
"./impls/fathom-meeting-recorder": {
|
|
177
457
|
"types": "./dist/impls/fathom-meeting-recorder.d.ts",
|
|
178
458
|
"bun": "./dist/impls/fathom-meeting-recorder.js",
|
|
179
|
-
"node": "./dist/node/impls/fathom-meeting-recorder.
|
|
459
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.js",
|
|
180
460
|
"default": "./dist/impls/fathom-meeting-recorder.js"
|
|
181
461
|
},
|
|
182
462
|
"./impls/fathom-meeting-recorder.mapper": {
|
|
183
463
|
"types": "./dist/impls/fathom-meeting-recorder.mapper.d.ts",
|
|
184
464
|
"bun": "./dist/impls/fathom-meeting-recorder.mapper.js",
|
|
185
|
-
"node": "./dist/node/impls/fathom-meeting-recorder.mapper.
|
|
465
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.mapper.js",
|
|
186
466
|
"default": "./dist/impls/fathom-meeting-recorder.mapper.js"
|
|
187
467
|
},
|
|
188
468
|
"./impls/fathom-meeting-recorder.types": {
|
|
189
469
|
"types": "./dist/impls/fathom-meeting-recorder.types.d.ts",
|
|
190
470
|
"bun": "./dist/impls/fathom-meeting-recorder.types.js",
|
|
191
|
-
"node": "./dist/node/impls/fathom-meeting-recorder.types.
|
|
471
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.types.js",
|
|
192
472
|
"default": "./dist/impls/fathom-meeting-recorder.types.js"
|
|
193
473
|
},
|
|
194
474
|
"./impls/fathom-meeting-recorder.utils": {
|
|
195
475
|
"types": "./dist/impls/fathom-meeting-recorder.utils.d.ts",
|
|
196
476
|
"bun": "./dist/impls/fathom-meeting-recorder.utils.js",
|
|
197
|
-
"node": "./dist/node/impls/fathom-meeting-recorder.utils.
|
|
477
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.utils.js",
|
|
198
478
|
"default": "./dist/impls/fathom-meeting-recorder.utils.js"
|
|
199
479
|
},
|
|
200
480
|
"./impls/fathom-meeting-recorder.webhooks": {
|
|
201
481
|
"types": "./dist/impls/fathom-meeting-recorder.webhooks.d.ts",
|
|
202
482
|
"bun": "./dist/impls/fathom-meeting-recorder.webhooks.js",
|
|
203
|
-
"node": "./dist/node/impls/fathom-meeting-recorder.webhooks.
|
|
483
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.webhooks.js",
|
|
204
484
|
"default": "./dist/impls/fathom-meeting-recorder.webhooks.js"
|
|
205
485
|
},
|
|
206
486
|
"./impls/fireflies-meeting-recorder": {
|
|
207
487
|
"types": "./dist/impls/fireflies-meeting-recorder.d.ts",
|
|
208
488
|
"bun": "./dist/impls/fireflies-meeting-recorder.js",
|
|
209
|
-
"node": "./dist/node/impls/fireflies-meeting-recorder.
|
|
489
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.js",
|
|
210
490
|
"default": "./dist/impls/fireflies-meeting-recorder.js"
|
|
211
491
|
},
|
|
212
492
|
"./impls/fireflies-meeting-recorder.queries": {
|
|
213
493
|
"types": "./dist/impls/fireflies-meeting-recorder.queries.d.ts",
|
|
214
494
|
"bun": "./dist/impls/fireflies-meeting-recorder.queries.js",
|
|
215
|
-
"node": "./dist/node/impls/fireflies-meeting-recorder.queries.
|
|
495
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.queries.js",
|
|
216
496
|
"default": "./dist/impls/fireflies-meeting-recorder.queries.js"
|
|
217
497
|
},
|
|
218
498
|
"./impls/fireflies-meeting-recorder.types": {
|
|
219
499
|
"types": "./dist/impls/fireflies-meeting-recorder.types.d.ts",
|
|
220
500
|
"bun": "./dist/impls/fireflies-meeting-recorder.types.js",
|
|
221
|
-
"node": "./dist/node/impls/fireflies-meeting-recorder.types.
|
|
501
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.types.js",
|
|
222
502
|
"default": "./dist/impls/fireflies-meeting-recorder.types.js"
|
|
223
503
|
},
|
|
224
504
|
"./impls/fireflies-meeting-recorder.utils": {
|
|
225
505
|
"types": "./dist/impls/fireflies-meeting-recorder.utils.d.ts",
|
|
226
506
|
"bun": "./dist/impls/fireflies-meeting-recorder.utils.js",
|
|
227
|
-
"node": "./dist/node/impls/fireflies-meeting-recorder.utils.
|
|
507
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.utils.js",
|
|
228
508
|
"default": "./dist/impls/fireflies-meeting-recorder.utils.js"
|
|
229
509
|
},
|
|
230
510
|
"./impls/gcs-storage": {
|
|
231
511
|
"types": "./dist/impls/gcs-storage.d.ts",
|
|
232
512
|
"bun": "./dist/impls/gcs-storage.js",
|
|
233
|
-
"node": "./dist/node/impls/gcs-storage.
|
|
513
|
+
"node": "./dist/node/impls/gcs-storage.js",
|
|
234
514
|
"default": "./dist/impls/gcs-storage.js"
|
|
235
515
|
},
|
|
236
516
|
"./impls/gmail-inbound": {
|
|
237
517
|
"types": "./dist/impls/gmail-inbound.d.ts",
|
|
238
518
|
"bun": "./dist/impls/gmail-inbound.js",
|
|
239
|
-
"node": "./dist/node/impls/gmail-inbound.
|
|
519
|
+
"node": "./dist/node/impls/gmail-inbound.js",
|
|
240
520
|
"default": "./dist/impls/gmail-inbound.js"
|
|
241
521
|
},
|
|
242
522
|
"./impls/gmail-outbound": {
|
|
243
523
|
"types": "./dist/impls/gmail-outbound.d.ts",
|
|
244
524
|
"bun": "./dist/impls/gmail-outbound.js",
|
|
245
|
-
"node": "./dist/node/impls/gmail-outbound.
|
|
525
|
+
"node": "./dist/node/impls/gmail-outbound.js",
|
|
246
526
|
"default": "./dist/impls/gmail-outbound.js"
|
|
247
527
|
},
|
|
248
528
|
"./impls/google-calendar": {
|
|
249
529
|
"types": "./dist/impls/google-calendar.d.ts",
|
|
250
530
|
"bun": "./dist/impls/google-calendar.js",
|
|
251
|
-
"node": "./dist/node/impls/google-calendar.
|
|
531
|
+
"node": "./dist/node/impls/google-calendar.js",
|
|
252
532
|
"default": "./dist/impls/google-calendar.js"
|
|
253
533
|
},
|
|
254
534
|
"./impls/gradium-voice": {
|
|
255
535
|
"types": "./dist/impls/gradium-voice.d.ts",
|
|
256
536
|
"bun": "./dist/impls/gradium-voice.js",
|
|
257
|
-
"node": "./dist/node/impls/gradium-voice.
|
|
537
|
+
"node": "./dist/node/impls/gradium-voice.js",
|
|
258
538
|
"default": "./dist/impls/gradium-voice.js"
|
|
259
539
|
},
|
|
260
540
|
"./impls/granola-meeting-recorder": {
|
|
261
541
|
"types": "./dist/impls/granola-meeting-recorder.d.ts",
|
|
262
542
|
"bun": "./dist/impls/granola-meeting-recorder.js",
|
|
263
|
-
"node": "./dist/node/impls/granola-meeting-recorder.
|
|
543
|
+
"node": "./dist/node/impls/granola-meeting-recorder.js",
|
|
264
544
|
"default": "./dist/impls/granola-meeting-recorder.js"
|
|
265
545
|
},
|
|
266
546
|
"./impls/granola-meeting-recorder.mcp": {
|
|
267
547
|
"types": "./dist/impls/granola-meeting-recorder.mcp.d.ts",
|
|
268
548
|
"bun": "./dist/impls/granola-meeting-recorder.mcp.js",
|
|
269
|
-
"node": "./dist/node/impls/granola-meeting-recorder.mcp.
|
|
549
|
+
"node": "./dist/node/impls/granola-meeting-recorder.mcp.js",
|
|
270
550
|
"default": "./dist/impls/granola-meeting-recorder.mcp.js"
|
|
271
551
|
},
|
|
272
552
|
"./impls/granola-meeting-recorder.types": {
|
|
273
553
|
"types": "./dist/impls/granola-meeting-recorder.types.d.ts",
|
|
274
554
|
"bun": "./dist/impls/granola-meeting-recorder.types.js",
|
|
275
|
-
"node": "./dist/node/impls/granola-meeting-recorder.types.
|
|
555
|
+
"node": "./dist/node/impls/granola-meeting-recorder.types.js",
|
|
276
556
|
"default": "./dist/impls/granola-meeting-recorder.types.js"
|
|
277
557
|
},
|
|
278
558
|
"./impls/index": {
|
|
279
559
|
"types": "./dist/impls/index.d.ts",
|
|
280
560
|
"bun": "./dist/impls/index.js",
|
|
281
|
-
"node": "./dist/node/impls/index.
|
|
561
|
+
"node": "./dist/node/impls/index.js",
|
|
282
562
|
"default": "./dist/impls/index.js"
|
|
283
563
|
},
|
|
284
564
|
"./impls/jira": {
|
|
285
565
|
"types": "./dist/impls/jira.d.ts",
|
|
286
566
|
"bun": "./dist/impls/jira.js",
|
|
287
|
-
"node": "./dist/node/impls/jira.
|
|
567
|
+
"node": "./dist/node/impls/jira.js",
|
|
288
568
|
"default": "./dist/impls/jira.js"
|
|
289
569
|
},
|
|
290
570
|
"./impls/linear": {
|
|
291
571
|
"types": "./dist/impls/linear.d.ts",
|
|
292
572
|
"bun": "./dist/impls/linear.js",
|
|
293
|
-
"node": "./dist/node/impls/linear.
|
|
573
|
+
"node": "./dist/node/impls/linear.js",
|
|
294
574
|
"default": "./dist/impls/linear.js"
|
|
295
575
|
},
|
|
296
576
|
"./impls/mistral-embedding": {
|
|
297
577
|
"types": "./dist/impls/mistral-embedding.d.ts",
|
|
298
578
|
"bun": "./dist/impls/mistral-embedding.js",
|
|
299
|
-
"node": "./dist/node/impls/mistral-embedding.
|
|
579
|
+
"node": "./dist/node/impls/mistral-embedding.js",
|
|
300
580
|
"default": "./dist/impls/mistral-embedding.js"
|
|
301
581
|
},
|
|
302
582
|
"./impls/mistral-llm": {
|
|
303
583
|
"types": "./dist/impls/mistral-llm.d.ts",
|
|
304
584
|
"bun": "./dist/impls/mistral-llm.js",
|
|
305
|
-
"node": "./dist/node/impls/mistral-llm.
|
|
585
|
+
"node": "./dist/node/impls/mistral-llm.js",
|
|
306
586
|
"default": "./dist/impls/mistral-llm.js"
|
|
307
587
|
},
|
|
308
588
|
"./impls/notion": {
|
|
309
589
|
"types": "./dist/impls/notion.d.ts",
|
|
310
590
|
"bun": "./dist/impls/notion.js",
|
|
311
|
-
"node": "./dist/node/impls/notion.
|
|
591
|
+
"node": "./dist/node/impls/notion.js",
|
|
312
592
|
"default": "./dist/impls/notion.js"
|
|
313
593
|
},
|
|
314
594
|
"./impls/posthog": {
|
|
315
595
|
"types": "./dist/impls/posthog.d.ts",
|
|
316
596
|
"bun": "./dist/impls/posthog.js",
|
|
317
|
-
"node": "./dist/node/impls/posthog.
|
|
597
|
+
"node": "./dist/node/impls/posthog.js",
|
|
318
598
|
"default": "./dist/impls/posthog.js"
|
|
319
599
|
},
|
|
320
600
|
"./impls/posthog-reader": {
|
|
321
601
|
"types": "./dist/impls/posthog-reader.d.ts",
|
|
322
602
|
"bun": "./dist/impls/posthog-reader.js",
|
|
323
|
-
"node": "./dist/node/impls/posthog-reader.
|
|
603
|
+
"node": "./dist/node/impls/posthog-reader.js",
|
|
324
604
|
"default": "./dist/impls/posthog-reader.js"
|
|
325
605
|
},
|
|
326
606
|
"./impls/posthog-utils": {
|
|
327
607
|
"types": "./dist/impls/posthog-utils.d.ts",
|
|
328
608
|
"bun": "./dist/impls/posthog-utils.js",
|
|
329
|
-
"node": "./dist/node/impls/posthog-utils.
|
|
609
|
+
"node": "./dist/node/impls/posthog-utils.js",
|
|
330
610
|
"default": "./dist/impls/posthog-utils.js"
|
|
331
611
|
},
|
|
332
612
|
"./impls/postmark-email": {
|
|
333
613
|
"types": "./dist/impls/postmark-email.d.ts",
|
|
334
614
|
"bun": "./dist/impls/postmark-email.js",
|
|
335
|
-
"node": "./dist/node/impls/postmark-email.
|
|
615
|
+
"node": "./dist/node/impls/postmark-email.js",
|
|
336
616
|
"default": "./dist/impls/postmark-email.js"
|
|
337
617
|
},
|
|
338
618
|
"./impls/powens-client": {
|
|
339
619
|
"types": "./dist/impls/powens-client.d.ts",
|
|
340
620
|
"bun": "./dist/impls/powens-client.js",
|
|
341
|
-
"node": "./dist/node/impls/powens-client.
|
|
621
|
+
"node": "./dist/node/impls/powens-client.js",
|
|
342
622
|
"default": "./dist/impls/powens-client.js"
|
|
343
623
|
},
|
|
344
624
|
"./impls/powens-openbanking": {
|
|
345
625
|
"types": "./dist/impls/powens-openbanking.d.ts",
|
|
346
626
|
"bun": "./dist/impls/powens-openbanking.js",
|
|
347
|
-
"node": "./dist/node/impls/powens-openbanking.
|
|
627
|
+
"node": "./dist/node/impls/powens-openbanking.js",
|
|
348
628
|
"default": "./dist/impls/powens-openbanking.js"
|
|
349
629
|
},
|
|
350
630
|
"./impls/provider-factory": {
|
|
351
631
|
"types": "./dist/impls/provider-factory.d.ts",
|
|
352
632
|
"bun": "./dist/impls/provider-factory.js",
|
|
353
|
-
"node": "./dist/node/impls/provider-factory.
|
|
633
|
+
"node": "./dist/node/impls/provider-factory.js",
|
|
354
634
|
"default": "./dist/impls/provider-factory.js"
|
|
355
635
|
},
|
|
356
636
|
"./impls/qdrant-vector": {
|
|
357
637
|
"types": "./dist/impls/qdrant-vector.d.ts",
|
|
358
638
|
"bun": "./dist/impls/qdrant-vector.js",
|
|
359
|
-
"node": "./dist/node/impls/qdrant-vector.
|
|
639
|
+
"node": "./dist/node/impls/qdrant-vector.js",
|
|
360
640
|
"default": "./dist/impls/qdrant-vector.js"
|
|
361
641
|
},
|
|
362
642
|
"./impls/stripe-payments": {
|
|
363
643
|
"types": "./dist/impls/stripe-payments.d.ts",
|
|
364
644
|
"bun": "./dist/impls/stripe-payments.js",
|
|
365
|
-
"node": "./dist/node/impls/stripe-payments.
|
|
645
|
+
"node": "./dist/node/impls/stripe-payments.js",
|
|
366
646
|
"default": "./dist/impls/stripe-payments.js"
|
|
367
647
|
},
|
|
368
648
|
"./impls/supabase-psql": {
|
|
369
649
|
"types": "./dist/impls/supabase-psql.d.ts",
|
|
370
650
|
"bun": "./dist/impls/supabase-psql.js",
|
|
371
|
-
"node": "./dist/node/impls/supabase-psql.
|
|
651
|
+
"node": "./dist/node/impls/supabase-psql.js",
|
|
372
652
|
"default": "./dist/impls/supabase-psql.js"
|
|
373
653
|
},
|
|
374
654
|
"./impls/supabase-vector": {
|
|
375
655
|
"types": "./dist/impls/supabase-vector.d.ts",
|
|
376
656
|
"bun": "./dist/impls/supabase-vector.js",
|
|
377
|
-
"node": "./dist/node/impls/supabase-vector.
|
|
657
|
+
"node": "./dist/node/impls/supabase-vector.js",
|
|
378
658
|
"default": "./dist/impls/supabase-vector.js"
|
|
379
659
|
},
|
|
380
660
|
"./impls/tldv-meeting-recorder": {
|
|
381
661
|
"types": "./dist/impls/tldv-meeting-recorder.d.ts",
|
|
382
662
|
"bun": "./dist/impls/tldv-meeting-recorder.js",
|
|
383
|
-
"node": "./dist/node/impls/tldv-meeting-recorder.
|
|
663
|
+
"node": "./dist/node/impls/tldv-meeting-recorder.js",
|
|
384
664
|
"default": "./dist/impls/tldv-meeting-recorder.js"
|
|
385
665
|
},
|
|
386
666
|
"./impls/twilio-sms": {
|
|
387
667
|
"types": "./dist/impls/twilio-sms.d.ts",
|
|
388
668
|
"bun": "./dist/impls/twilio-sms.js",
|
|
389
|
-
"node": "./dist/node/impls/twilio-sms.
|
|
669
|
+
"node": "./dist/node/impls/twilio-sms.js",
|
|
390
670
|
"default": "./dist/impls/twilio-sms.js"
|
|
391
671
|
},
|
|
392
672
|
"./llm": {
|
|
393
673
|
"types": "./dist/llm.d.ts",
|
|
394
674
|
"bun": "./dist/llm.js",
|
|
395
|
-
"node": "./dist/node/llm.
|
|
675
|
+
"node": "./dist/node/llm.js",
|
|
396
676
|
"default": "./dist/llm.js"
|
|
397
677
|
},
|
|
398
678
|
"./meeting-recorder": {
|
|
399
679
|
"types": "./dist/meeting-recorder.d.ts",
|
|
400
680
|
"bun": "./dist/meeting-recorder.js",
|
|
401
|
-
"node": "./dist/node/meeting-recorder.
|
|
681
|
+
"node": "./dist/node/meeting-recorder.js",
|
|
402
682
|
"default": "./dist/meeting-recorder.js"
|
|
403
683
|
},
|
|
404
684
|
"./openbanking": {
|
|
405
685
|
"types": "./dist/openbanking.d.ts",
|
|
406
686
|
"bun": "./dist/openbanking.js",
|
|
407
|
-
"node": "./dist/node/openbanking.
|
|
687
|
+
"node": "./dist/node/openbanking.js",
|
|
408
688
|
"default": "./dist/openbanking.js"
|
|
409
689
|
},
|
|
410
690
|
"./payments": {
|
|
411
691
|
"types": "./dist/payments.d.ts",
|
|
412
692
|
"bun": "./dist/payments.js",
|
|
413
|
-
"node": "./dist/node/payments.
|
|
693
|
+
"node": "./dist/node/payments.js",
|
|
414
694
|
"default": "./dist/payments.js"
|
|
415
695
|
},
|
|
416
696
|
"./project-management": {
|
|
417
697
|
"types": "./dist/project-management.d.ts",
|
|
418
698
|
"bun": "./dist/project-management.js",
|
|
419
|
-
"node": "./dist/node/project-management.
|
|
699
|
+
"node": "./dist/node/project-management.js",
|
|
420
700
|
"default": "./dist/project-management.js"
|
|
421
701
|
},
|
|
422
702
|
"./runtime": {
|
|
423
703
|
"types": "./dist/runtime.d.ts",
|
|
424
704
|
"bun": "./dist/runtime.js",
|
|
425
|
-
"node": "./dist/node/runtime.
|
|
705
|
+
"node": "./dist/node/runtime.js",
|
|
426
706
|
"default": "./dist/runtime.js"
|
|
427
707
|
},
|
|
428
708
|
"./secrets/provider": {
|
|
429
709
|
"types": "./dist/secrets/provider.d.ts",
|
|
430
710
|
"bun": "./dist/secrets/provider.js",
|
|
431
|
-
"node": "./dist/node/secrets/provider.
|
|
711
|
+
"node": "./dist/node/secrets/provider.js",
|
|
432
712
|
"default": "./dist/secrets/provider.js"
|
|
433
713
|
},
|
|
434
714
|
"./sms": {
|
|
435
715
|
"types": "./dist/sms.d.ts",
|
|
436
716
|
"bun": "./dist/sms.js",
|
|
437
|
-
"node": "./dist/node/sms.
|
|
717
|
+
"node": "./dist/node/sms.js",
|
|
438
718
|
"default": "./dist/sms.js"
|
|
439
719
|
},
|
|
440
720
|
"./storage": {
|
|
441
721
|
"types": "./dist/storage.d.ts",
|
|
442
722
|
"bun": "./dist/storage.js",
|
|
443
|
-
"node": "./dist/node/storage.
|
|
723
|
+
"node": "./dist/node/storage.js",
|
|
444
724
|
"default": "./dist/storage.js"
|
|
445
725
|
},
|
|
446
726
|
"./vector-store": {
|
|
447
727
|
"types": "./dist/vector-store.d.ts",
|
|
448
728
|
"bun": "./dist/vector-store.js",
|
|
449
|
-
"node": "./dist/node/vector-store.
|
|
729
|
+
"node": "./dist/node/vector-store.js",
|
|
450
730
|
"default": "./dist/vector-store.js"
|
|
451
731
|
},
|
|
452
732
|
"./voice": {
|
|
453
733
|
"types": "./dist/voice.d.ts",
|
|
454
734
|
"bun": "./dist/voice.js",
|
|
455
|
-
"node": "./dist/node/voice.
|
|
735
|
+
"node": "./dist/node/voice.js",
|
|
456
736
|
"default": "./dist/voice.js"
|
|
457
737
|
}
|
|
458
738
|
},
|