@contractspec/integration.providers-impls 3.7.6 → 3.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +80 -241
- package/dist/impls/composio-fallback-resolver.d.ts +4 -4
- package/dist/impls/composio-fallback-resolver.js +73 -73
- package/dist/impls/composio-mcp.d.ts +1 -1
- package/dist/impls/composio-proxies.d.ts +5 -5
- package/dist/impls/composio-sdk.d.ts +1 -1
- package/dist/impls/elevenlabs-voice.d.ts +1 -1
- package/dist/impls/fal-voice.d.ts +1 -1
- package/dist/impls/gcs-storage.d.ts +1 -1
- package/dist/impls/gmail-inbound.d.ts +1 -1
- package/dist/impls/gradium-voice.d.ts +2 -2
- package/dist/impls/health/base-health-provider.d.ts +1 -1
- package/dist/impls/health/official-health-providers.d.ts +1 -1
- package/dist/impls/health/providers.d.ts +1 -1
- package/dist/impls/health-provider-factory.d.ts +1 -1
- package/dist/impls/index.d.ts +31 -30
- package/dist/impls/index.js +2189 -2138
- package/dist/impls/messaging-telegram.d.ts +13 -0
- package/dist/impls/messaging-telegram.js +49 -0
- package/dist/impls/mistral-conversational.d.ts +1 -1
- package/dist/impls/mistral-conversational.js +159 -159
- package/dist/impls/posthog-reader.d.ts +1 -1
- package/dist/impls/provider-factory.d.ts +11 -11
- package/dist/impls/provider-factory.js +2116 -2066
- package/dist/index.d.ts +12 -12
- package/dist/index.js +2197 -2146
- package/dist/node/impls/composio-fallback-resolver.js +73 -73
- package/dist/node/impls/index.js +2189 -2138
- package/dist/node/impls/messaging-telegram.js +49 -0
- package/dist/node/impls/mistral-conversational.js +159 -159
- package/dist/node/impls/provider-factory.js +2116 -2066
- package/dist/node/index.js +2197 -2146
- package/dist/node/secrets/provider.js +2 -2
- package/dist/secrets/provider.d.ts +2 -2
- package/dist/secrets/provider.js +2 -2
- package/package.json +25 -13
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export * from './impls';
|
|
2
|
-
export * from './openbanking';
|
|
3
|
-
export * from './llm';
|
|
4
|
-
export * from './embedding';
|
|
5
|
-
export * from './vector-store';
|
|
6
|
-
export * from './database';
|
|
7
1
|
export * from './analytics';
|
|
8
|
-
export * from './storage';
|
|
9
|
-
export * from './email';
|
|
10
2
|
export * from './calendar';
|
|
11
|
-
export * from './
|
|
3
|
+
export * from './database';
|
|
4
|
+
export * from './email';
|
|
5
|
+
export * from './embedding';
|
|
6
|
+
export * from './health';
|
|
7
|
+
export * from './impls';
|
|
8
|
+
export * from './llm';
|
|
9
|
+
export * from './meeting-recorder';
|
|
12
10
|
export * from './messaging';
|
|
11
|
+
export * from './openbanking';
|
|
13
12
|
export * from './payments';
|
|
14
|
-
export * from './voice';
|
|
15
13
|
export * from './project-management';
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
14
|
+
export * from './sms';
|
|
15
|
+
export * from './storage';
|
|
16
|
+
export * from './vector-store';
|
|
17
|
+
export * from './voice';
|