@contractspec/lib.contracts-integrations 2.3.0 → 2.5.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/dist/index.js +381 -55
- package/dist/integrations/index.js +379 -53
- package/dist/integrations/providers/deepgram.d.ts +3 -0
- package/dist/integrations/providers/deepgram.js +99 -0
- package/dist/integrations/providers/elevenlabs.js +6 -3
- package/dist/integrations/providers/fal-image.d.ts +3 -0
- package/dist/integrations/providers/fal-image.js +92 -0
- package/dist/integrations/providers/fal.js +2 -2
- package/dist/integrations/providers/gradium.js +2 -2
- package/dist/integrations/providers/image.d.ts +85 -0
- package/dist/integrations/providers/image.js +16 -0
- package/dist/integrations/providers/index.d.ts +6 -0
- package/dist/integrations/providers/index.js +380 -54
- package/dist/integrations/providers/openai-image.d.ts +3 -0
- package/dist/integrations/providers/openai-image.js +96 -0
- package/dist/integrations/providers/openai-realtime.d.ts +3 -0
- package/dist/integrations/providers/openai-realtime.js +97 -0
- package/dist/integrations/providers/registry.js +192 -33
- package/dist/integrations/providers/video.d.ts +10 -0
- package/dist/integrations/providers/voice-video-sync.d.ts +29 -0
- package/dist/integrations/providers/voice-video-sync.js +1 -0
- package/dist/integrations/providers/voice.d.ts +149 -12
- package/dist/integrations/spec.d.ts +1 -1
- package/dist/node/index.js +381 -55
- package/dist/node/integrations/index.js +379 -53
- package/dist/node/integrations/providers/deepgram.js +98 -0
- package/dist/node/integrations/providers/elevenlabs.js +6 -3
- package/dist/node/integrations/providers/fal-image.js +91 -0
- package/dist/node/integrations/providers/fal.js +2 -2
- package/dist/node/integrations/providers/gradium.js +2 -2
- package/dist/node/integrations/providers/image.js +15 -0
- package/dist/node/integrations/providers/index.js +380 -54
- package/dist/node/integrations/providers/openai-image.js +95 -0
- package/dist/node/integrations/providers/openai-realtime.js +96 -0
- package/dist/node/integrations/providers/registry.js +192 -33
- package/dist/node/integrations/providers/voice-video-sync.js +0 -0
- package/package.json +77 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.contracts-integrations",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "Integration contract definitions for external services",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-sdk/client-secrets-manager": "^3.991.0",
|
|
23
|
-
"@contractspec/lib.contracts-spec": "2.
|
|
24
|
-
"@contractspec/lib.schema": "2.
|
|
23
|
+
"@contractspec/lib.contracts-spec": "2.5.0",
|
|
24
|
+
"@contractspec/lib.schema": "2.5.0",
|
|
25
25
|
"@google-cloud/secret-manager": "^6.1.1",
|
|
26
26
|
"google-gax": "^5.0.6"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@contractspec/tool.typescript": "2.
|
|
29
|
+
"@contractspec/tool.typescript": "2.5.0",
|
|
30
30
|
"typescript": "^5.9.3",
|
|
31
|
-
"@contractspec/tool.bun": "2.
|
|
31
|
+
"@contractspec/tool.bun": "2.5.0"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"dist",
|
|
@@ -245,6 +245,12 @@
|
|
|
245
245
|
"node": "./dist/node/integrations/providers/database.js",
|
|
246
246
|
"default": "./dist/integrations/providers/database.js"
|
|
247
247
|
},
|
|
248
|
+
"./integrations/providers/deepgram": {
|
|
249
|
+
"types": "./dist/integrations/providers/deepgram.d.ts",
|
|
250
|
+
"bun": "./dist/integrations/providers/deepgram.js",
|
|
251
|
+
"node": "./dist/node/integrations/providers/deepgram.js",
|
|
252
|
+
"default": "./dist/integrations/providers/deepgram.js"
|
|
253
|
+
},
|
|
248
254
|
"./integrations/providers/elevenlabs": {
|
|
249
255
|
"types": "./dist/integrations/providers/elevenlabs.d.ts",
|
|
250
256
|
"bun": "./dist/integrations/providers/elevenlabs.js",
|
|
@@ -269,6 +275,12 @@
|
|
|
269
275
|
"node": "./dist/node/integrations/providers/fal.js",
|
|
270
276
|
"default": "./dist/integrations/providers/fal.js"
|
|
271
277
|
},
|
|
278
|
+
"./integrations/providers/fal-image": {
|
|
279
|
+
"types": "./dist/integrations/providers/fal-image.d.ts",
|
|
280
|
+
"bun": "./dist/integrations/providers/fal-image.js",
|
|
281
|
+
"node": "./dist/node/integrations/providers/fal-image.js",
|
|
282
|
+
"default": "./dist/integrations/providers/fal-image.js"
|
|
283
|
+
},
|
|
272
284
|
"./integrations/providers/fathom": {
|
|
273
285
|
"types": "./dist/integrations/providers/fathom.d.ts",
|
|
274
286
|
"bun": "./dist/integrations/providers/fathom.js",
|
|
@@ -311,6 +323,12 @@
|
|
|
311
323
|
"node": "./dist/node/integrations/providers/granola.js",
|
|
312
324
|
"default": "./dist/integrations/providers/granola.js"
|
|
313
325
|
},
|
|
326
|
+
"./integrations/providers/image": {
|
|
327
|
+
"types": "./dist/integrations/providers/image.d.ts",
|
|
328
|
+
"bun": "./dist/integrations/providers/image.js",
|
|
329
|
+
"node": "./dist/node/integrations/providers/image.js",
|
|
330
|
+
"default": "./dist/integrations/providers/image.js"
|
|
331
|
+
},
|
|
314
332
|
"./integrations/providers/index": {
|
|
315
333
|
"types": "./dist/integrations/providers/index.d.ts",
|
|
316
334
|
"bun": "./dist/integrations/providers/index.js",
|
|
@@ -353,6 +371,18 @@
|
|
|
353
371
|
"node": "./dist/node/integrations/providers/notion.js",
|
|
354
372
|
"default": "./dist/integrations/providers/notion.js"
|
|
355
373
|
},
|
|
374
|
+
"./integrations/providers/openai-image": {
|
|
375
|
+
"types": "./dist/integrations/providers/openai-image.d.ts",
|
|
376
|
+
"bun": "./dist/integrations/providers/openai-image.js",
|
|
377
|
+
"node": "./dist/node/integrations/providers/openai-image.js",
|
|
378
|
+
"default": "./dist/integrations/providers/openai-image.js"
|
|
379
|
+
},
|
|
380
|
+
"./integrations/providers/openai-realtime": {
|
|
381
|
+
"types": "./dist/integrations/providers/openai-realtime.d.ts",
|
|
382
|
+
"bun": "./dist/integrations/providers/openai-realtime.js",
|
|
383
|
+
"node": "./dist/node/integrations/providers/openai-realtime.js",
|
|
384
|
+
"default": "./dist/integrations/providers/openai-realtime.js"
|
|
385
|
+
},
|
|
356
386
|
"./integrations/providers/openbanking": {
|
|
357
387
|
"types": "./dist/integrations/providers/openbanking.d.ts",
|
|
358
388
|
"bun": "./dist/integrations/providers/openbanking.js",
|
|
@@ -467,6 +497,12 @@
|
|
|
467
497
|
"node": "./dist/node/integrations/providers/voice.js",
|
|
468
498
|
"default": "./dist/integrations/providers/voice.js"
|
|
469
499
|
},
|
|
500
|
+
"./integrations/providers/voice-video-sync": {
|
|
501
|
+
"types": "./dist/integrations/providers/voice-video-sync.d.ts",
|
|
502
|
+
"bun": "./dist/integrations/providers/voice-video-sync.js",
|
|
503
|
+
"node": "./dist/node/integrations/providers/voice-video-sync.js",
|
|
504
|
+
"default": "./dist/integrations/providers/voice-video-sync.js"
|
|
505
|
+
},
|
|
470
506
|
"./integrations/runtime": {
|
|
471
507
|
"types": "./dist/integrations/runtime.d.ts",
|
|
472
508
|
"bun": "./dist/integrations/runtime.js",
|
|
@@ -748,6 +784,12 @@
|
|
|
748
784
|
"node": "./dist/node/integrations/providers/database.js",
|
|
749
785
|
"default": "./dist/integrations/providers/database.js"
|
|
750
786
|
},
|
|
787
|
+
"./integrations/providers/deepgram": {
|
|
788
|
+
"types": "./dist/integrations/providers/deepgram.d.ts",
|
|
789
|
+
"bun": "./dist/integrations/providers/deepgram.js",
|
|
790
|
+
"node": "./dist/node/integrations/providers/deepgram.js",
|
|
791
|
+
"default": "./dist/integrations/providers/deepgram.js"
|
|
792
|
+
},
|
|
751
793
|
"./integrations/providers/elevenlabs": {
|
|
752
794
|
"types": "./dist/integrations/providers/elevenlabs.d.ts",
|
|
753
795
|
"bun": "./dist/integrations/providers/elevenlabs.js",
|
|
@@ -772,6 +814,12 @@
|
|
|
772
814
|
"node": "./dist/node/integrations/providers/fal.js",
|
|
773
815
|
"default": "./dist/integrations/providers/fal.js"
|
|
774
816
|
},
|
|
817
|
+
"./integrations/providers/fal-image": {
|
|
818
|
+
"types": "./dist/integrations/providers/fal-image.d.ts",
|
|
819
|
+
"bun": "./dist/integrations/providers/fal-image.js",
|
|
820
|
+
"node": "./dist/node/integrations/providers/fal-image.js",
|
|
821
|
+
"default": "./dist/integrations/providers/fal-image.js"
|
|
822
|
+
},
|
|
775
823
|
"./integrations/providers/fathom": {
|
|
776
824
|
"types": "./dist/integrations/providers/fathom.d.ts",
|
|
777
825
|
"bun": "./dist/integrations/providers/fathom.js",
|
|
@@ -814,6 +862,12 @@
|
|
|
814
862
|
"node": "./dist/node/integrations/providers/granola.js",
|
|
815
863
|
"default": "./dist/integrations/providers/granola.js"
|
|
816
864
|
},
|
|
865
|
+
"./integrations/providers/image": {
|
|
866
|
+
"types": "./dist/integrations/providers/image.d.ts",
|
|
867
|
+
"bun": "./dist/integrations/providers/image.js",
|
|
868
|
+
"node": "./dist/node/integrations/providers/image.js",
|
|
869
|
+
"default": "./dist/integrations/providers/image.js"
|
|
870
|
+
},
|
|
817
871
|
"./integrations/providers/index": {
|
|
818
872
|
"types": "./dist/integrations/providers/index.d.ts",
|
|
819
873
|
"bun": "./dist/integrations/providers/index.js",
|
|
@@ -856,6 +910,18 @@
|
|
|
856
910
|
"node": "./dist/node/integrations/providers/notion.js",
|
|
857
911
|
"default": "./dist/integrations/providers/notion.js"
|
|
858
912
|
},
|
|
913
|
+
"./integrations/providers/openai-image": {
|
|
914
|
+
"types": "./dist/integrations/providers/openai-image.d.ts",
|
|
915
|
+
"bun": "./dist/integrations/providers/openai-image.js",
|
|
916
|
+
"node": "./dist/node/integrations/providers/openai-image.js",
|
|
917
|
+
"default": "./dist/integrations/providers/openai-image.js"
|
|
918
|
+
},
|
|
919
|
+
"./integrations/providers/openai-realtime": {
|
|
920
|
+
"types": "./dist/integrations/providers/openai-realtime.d.ts",
|
|
921
|
+
"bun": "./dist/integrations/providers/openai-realtime.js",
|
|
922
|
+
"node": "./dist/node/integrations/providers/openai-realtime.js",
|
|
923
|
+
"default": "./dist/integrations/providers/openai-realtime.js"
|
|
924
|
+
},
|
|
859
925
|
"./integrations/providers/openbanking": {
|
|
860
926
|
"types": "./dist/integrations/providers/openbanking.d.ts",
|
|
861
927
|
"bun": "./dist/integrations/providers/openbanking.js",
|
|
@@ -970,6 +1036,12 @@
|
|
|
970
1036
|
"node": "./dist/node/integrations/providers/voice.js",
|
|
971
1037
|
"default": "./dist/integrations/providers/voice.js"
|
|
972
1038
|
},
|
|
1039
|
+
"./integrations/providers/voice-video-sync": {
|
|
1040
|
+
"types": "./dist/integrations/providers/voice-video-sync.d.ts",
|
|
1041
|
+
"bun": "./dist/integrations/providers/voice-video-sync.js",
|
|
1042
|
+
"node": "./dist/node/integrations/providers/voice-video-sync.js",
|
|
1043
|
+
"default": "./dist/integrations/providers/voice-video-sync.js"
|
|
1044
|
+
},
|
|
973
1045
|
"./integrations/runtime": {
|
|
974
1046
|
"types": "./dist/integrations/runtime.d.ts",
|
|
975
1047
|
"bun": "./dist/integrations/runtime.js",
|