@contractspec/lib.contracts-integrations 2.4.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.
Files changed (37) hide show
  1. package/dist/index.js +381 -55
  2. package/dist/integrations/index.js +379 -53
  3. package/dist/integrations/providers/deepgram.d.ts +3 -0
  4. package/dist/integrations/providers/deepgram.js +99 -0
  5. package/dist/integrations/providers/elevenlabs.js +6 -3
  6. package/dist/integrations/providers/fal-image.d.ts +3 -0
  7. package/dist/integrations/providers/fal-image.js +92 -0
  8. package/dist/integrations/providers/fal.js +2 -2
  9. package/dist/integrations/providers/gradium.js +2 -2
  10. package/dist/integrations/providers/image.d.ts +85 -0
  11. package/dist/integrations/providers/image.js +16 -0
  12. package/dist/integrations/providers/index.d.ts +6 -0
  13. package/dist/integrations/providers/index.js +380 -54
  14. package/dist/integrations/providers/openai-image.d.ts +3 -0
  15. package/dist/integrations/providers/openai-image.js +96 -0
  16. package/dist/integrations/providers/openai-realtime.d.ts +3 -0
  17. package/dist/integrations/providers/openai-realtime.js +97 -0
  18. package/dist/integrations/providers/registry.js +192 -33
  19. package/dist/integrations/providers/video.d.ts +10 -0
  20. package/dist/integrations/providers/voice-video-sync.d.ts +29 -0
  21. package/dist/integrations/providers/voice-video-sync.js +1 -0
  22. package/dist/integrations/providers/voice.d.ts +149 -12
  23. package/dist/integrations/spec.d.ts +1 -1
  24. package/dist/node/index.js +381 -55
  25. package/dist/node/integrations/index.js +379 -53
  26. package/dist/node/integrations/providers/deepgram.js +98 -0
  27. package/dist/node/integrations/providers/elevenlabs.js +6 -3
  28. package/dist/node/integrations/providers/fal-image.js +91 -0
  29. package/dist/node/integrations/providers/fal.js +2 -2
  30. package/dist/node/integrations/providers/gradium.js +2 -2
  31. package/dist/node/integrations/providers/image.js +15 -0
  32. package/dist/node/integrations/providers/index.js +380 -54
  33. package/dist/node/integrations/providers/openai-image.js +95 -0
  34. package/dist/node/integrations/providers/openai-realtime.js +96 -0
  35. package/dist/node/integrations/providers/registry.js +192 -33
  36. package/dist/node/integrations/providers/voice-video-sync.js +0 -0
  37. package/package.json +77 -5
@@ -0,0 +1,95 @@
1
+ // src/integrations/spec.ts
2
+ import { SpecContractRegistry } from "@contractspec/lib.contracts-spec/registry";
3
+ var integrationKey = (meta) => `${meta.key}.v${meta.version}`;
4
+
5
+ class IntegrationSpecRegistry extends SpecContractRegistry {
6
+ constructor(items) {
7
+ super("integration", items);
8
+ }
9
+ getByCategory(category) {
10
+ return this.list().filter((spec) => spec.meta.category === category);
11
+ }
12
+ }
13
+ function makeIntegrationSpecKey(meta) {
14
+ return integrationKey(meta);
15
+ }
16
+ var defineIntegration = (spec) => spec;
17
+
18
+ // src/integrations/providers/openai-image.ts
19
+ import { StabilityEnum } from "@contractspec/lib.contracts-spec/ownership";
20
+ var openaiImageIntegrationSpec = defineIntegration({
21
+ meta: {
22
+ key: "ai-image.openai",
23
+ version: "1.0.0",
24
+ category: "ai-image",
25
+ title: "OpenAI Image Generation",
26
+ description: "OpenAI integration for AI image generation using DALL-E and gpt-image models.",
27
+ domain: "ai",
28
+ owners: ["platform.ai"],
29
+ tags: ["image", "generation", "dall-e", "gpt-image"],
30
+ stability: StabilityEnum.Experimental
31
+ },
32
+ supportedModes: ["managed", "byok"],
33
+ capabilities: {
34
+ provides: [{ key: "ai.image.generation", version: "1.0.0" }]
35
+ },
36
+ configSchema: {
37
+ schema: {
38
+ type: "object",
39
+ properties: {
40
+ model: {
41
+ type: "string",
42
+ description: "OpenAI image model identifier (e.g. dall-e-3, gpt-image-1)."
43
+ },
44
+ defaultSize: {
45
+ type: "string",
46
+ enum: ["1024x1024", "1024x1792", "1792x1024"]
47
+ },
48
+ defaultQuality: {
49
+ type: "string",
50
+ enum: ["standard", "hd"]
51
+ }
52
+ }
53
+ },
54
+ example: {
55
+ model: "dall-e-3",
56
+ defaultSize: "1024x1024",
57
+ defaultQuality: "standard"
58
+ }
59
+ },
60
+ secretSchema: {
61
+ schema: {
62
+ type: "object",
63
+ required: ["apiKey"],
64
+ properties: {
65
+ apiKey: {
66
+ type: "string",
67
+ description: "OpenAI API key with image generation permissions."
68
+ }
69
+ }
70
+ },
71
+ example: {
72
+ apiKey: "sk-***"
73
+ }
74
+ },
75
+ healthCheck: {
76
+ method: "custom",
77
+ timeoutMs: 5000
78
+ },
79
+ docsUrl: "https://platform.openai.com/docs/guides/images",
80
+ constraints: {
81
+ rateLimit: {
82
+ rpm: 50
83
+ }
84
+ },
85
+ byokSetup: {
86
+ setupInstructions: "Create an OpenAI API key with image generation access enabled."
87
+ }
88
+ });
89
+ function registerOpenaiImageIntegration(registry) {
90
+ return registry.register(openaiImageIntegrationSpec);
91
+ }
92
+ export {
93
+ registerOpenaiImageIntegration,
94
+ openaiImageIntegrationSpec
95
+ };
@@ -0,0 +1,96 @@
1
+ // src/integrations/spec.ts
2
+ import { SpecContractRegistry } from "@contractspec/lib.contracts-spec/registry";
3
+ var integrationKey = (meta) => `${meta.key}.v${meta.version}`;
4
+
5
+ class IntegrationSpecRegistry extends SpecContractRegistry {
6
+ constructor(items) {
7
+ super("integration", items);
8
+ }
9
+ getByCategory(category) {
10
+ return this.list().filter((spec) => spec.meta.category === category);
11
+ }
12
+ }
13
+ function makeIntegrationSpecKey(meta) {
14
+ return integrationKey(meta);
15
+ }
16
+ var defineIntegration = (spec) => spec;
17
+
18
+ // src/integrations/providers/openai-realtime.ts
19
+ import { StabilityEnum } from "@contractspec/lib.contracts-spec/ownership";
20
+ var openaiRealtimeIntegrationSpec = defineIntegration({
21
+ meta: {
22
+ key: "ai-voice-conv.openai",
23
+ version: "1.0.0",
24
+ category: "ai-voice-conversational",
25
+ title: "OpenAI Realtime Voice",
26
+ description: "OpenAI Realtime API integration for bidirectional conversational voice with GPT models.",
27
+ domain: "ai",
28
+ owners: ["platform.ai"],
29
+ tags: ["voice", "conversational", "realtime", "openai"],
30
+ stability: StabilityEnum.Experimental
31
+ },
32
+ supportedModes: ["byok"],
33
+ capabilities: {
34
+ provides: [{ key: "ai.voice.conversational", version: "1.0.0" }]
35
+ },
36
+ configSchema: {
37
+ schema: {
38
+ type: "object",
39
+ properties: {
40
+ model: {
41
+ type: "string",
42
+ description: "OpenAI model for realtime conversations (e.g. gpt-4o-realtime-preview)."
43
+ },
44
+ defaultVoice: {
45
+ type: "string",
46
+ description: "Default voice for agent responses (e.g. alloy, echo, shimmer)."
47
+ },
48
+ turnDetection: {
49
+ type: "string",
50
+ enum: ["server_vad", "push_to_talk"],
51
+ description: "Turn detection strategy."
52
+ },
53
+ maxSessionDurationSeconds: {
54
+ type: "number",
55
+ description: "Maximum session duration in seconds."
56
+ }
57
+ }
58
+ },
59
+ example: {
60
+ model: "gpt-4o-realtime-preview",
61
+ defaultVoice: "alloy",
62
+ turnDetection: "server_vad",
63
+ maxSessionDurationSeconds: 600
64
+ }
65
+ },
66
+ secretSchema: {
67
+ schema: {
68
+ type: "object",
69
+ required: ["apiKey"],
70
+ properties: {
71
+ apiKey: {
72
+ type: "string",
73
+ description: "OpenAI API key with realtime API access."
74
+ }
75
+ }
76
+ },
77
+ example: {
78
+ apiKey: "sk-***"
79
+ }
80
+ },
81
+ healthCheck: {
82
+ method: "custom",
83
+ timeoutMs: 5000
84
+ },
85
+ docsUrl: "https://platform.openai.com/docs/guides/realtime",
86
+ byokSetup: {
87
+ setupInstructions: "Create an OpenAI API key with Realtime API access enabled and store it in your secret provider."
88
+ }
89
+ });
90
+ function registerOpenaiRealtimeIntegration(registry) {
91
+ return registry.register(openaiRealtimeIntegrationSpec);
92
+ }
93
+ export {
94
+ registerOpenaiRealtimeIntegration,
95
+ openaiRealtimeIntegrationSpec
96
+ };
@@ -487,17 +487,20 @@ var elevenLabsIntegrationSpec = defineIntegration({
487
487
  meta: {
488
488
  key: "ai-voice.elevenlabs",
489
489
  version: "1.0.0",
490
- category: "ai-voice",
490
+ category: "ai-voice-tts",
491
491
  title: "ElevenLabs Text-to-Speech",
492
492
  description: "ElevenLabs integration for neural voice synthesis and voice catalog access.",
493
493
  domain: "ai",
494
494
  owners: ["platform.ai"],
495
- tags: ["voice", "tts"],
495
+ tags: ["voice", "tts", "stt"],
496
496
  stability: StabilityEnum7.Beta
497
497
  },
498
498
  supportedModes: ["managed", "byok"],
499
499
  capabilities: {
500
- provides: [{ key: "ai.voice.synthesis", version: "1.0.0" }]
500
+ provides: [
501
+ { key: "ai.voice.tts", version: "1.0.0" },
502
+ { key: "ai.voice.stt", version: "1.0.0" }
503
+ ]
501
504
  },
502
505
  configSchema: {
503
506
  schema: {
@@ -552,7 +555,7 @@ var gradiumIntegrationSpec = defineIntegration({
552
555
  meta: {
553
556
  key: "ai-voice.gradium",
554
557
  version: "1.0.0",
555
- category: "ai-voice",
558
+ category: "ai-voice-tts",
556
559
  title: "Gradium Text-to-Speech",
557
560
  description: "Gradium integration for low-latency voice synthesis and voice catalog access.",
558
561
  domain: "ai",
@@ -562,7 +565,7 @@ var gradiumIntegrationSpec = defineIntegration({
562
565
  },
563
566
  supportedModes: ["byok"],
564
567
  capabilities: {
565
- provides: [{ key: "ai.voice.synthesis", version: "1.0.0" }]
568
+ provides: [{ key: "ai.voice.tts", version: "1.0.0" }]
566
569
  },
567
570
  configSchema: {
568
571
  schema: {
@@ -641,7 +644,7 @@ var falIntegrationSpec = defineIntegration({
641
644
  meta: {
642
645
  key: "ai-voice.fal",
643
646
  version: "1.0.0",
644
- category: "ai-voice",
647
+ category: "ai-voice-tts",
645
648
  title: "Fal Chatterbox Text-to-Speech",
646
649
  description: "Fal integration for voice synthesis using Chatterbox text-to-speech models.",
647
650
  domain: "ai",
@@ -651,7 +654,7 @@ var falIntegrationSpec = defineIntegration({
651
654
  },
652
655
  supportedModes: ["byok"],
653
656
  capabilities: {
654
- provides: [{ key: "ai.voice.synthesis", version: "1.0.0" }]
657
+ provides: [{ key: "ai.voice.tts", version: "1.0.0" }]
655
658
  },
656
659
  configSchema: {
657
660
  schema: {
@@ -726,8 +729,162 @@ function registerFalIntegration(registry) {
726
729
  return registry.register(falIntegrationSpec);
727
730
  }
728
731
 
729
- // src/integrations/providers/gmail.ts
732
+ // src/integrations/providers/deepgram.ts
730
733
  import { StabilityEnum as StabilityEnum10 } from "@contractspec/lib.contracts-spec/ownership";
734
+ var deepgramIntegrationSpec = defineIntegration({
735
+ meta: {
736
+ key: "ai-voice-stt.deepgram",
737
+ version: "1.0.0",
738
+ category: "ai-voice-stt",
739
+ title: "Deepgram Speech-to-Text",
740
+ description: "Deepgram integration for real-time and batch speech-to-text transcription with speaker diarization.",
741
+ domain: "ai",
742
+ owners: ["platform.ai"],
743
+ tags: ["voice", "stt", "transcription", "diarization"],
744
+ stability: StabilityEnum10.Experimental
745
+ },
746
+ supportedModes: ["byok"],
747
+ capabilities: {
748
+ provides: [
749
+ { key: "ai.voice.stt", version: "1.0.0" },
750
+ { key: "ai.voice.conversational", version: "1.0.0" }
751
+ ]
752
+ },
753
+ configSchema: {
754
+ schema: {
755
+ type: "object",
756
+ properties: {
757
+ model: {
758
+ type: "string",
759
+ description: "Deepgram model to use (e.g. nova-3, nova-2, enhanced)."
760
+ },
761
+ language: {
762
+ type: "string",
763
+ description: "Default language code for transcription (e.g. en-US)."
764
+ },
765
+ enableDiarization: {
766
+ type: "boolean",
767
+ description: "Enable speaker diarization by default."
768
+ },
769
+ enableSmartFormat: {
770
+ type: "boolean",
771
+ description: "Enable smart formatting (punctuation, capitalization)."
772
+ }
773
+ }
774
+ },
775
+ example: {
776
+ model: "nova-3",
777
+ language: "en-US",
778
+ enableDiarization: true,
779
+ enableSmartFormat: true
780
+ }
781
+ },
782
+ secretSchema: {
783
+ schema: {
784
+ type: "object",
785
+ required: ["apiKey"],
786
+ properties: {
787
+ apiKey: {
788
+ type: "string",
789
+ description: "Deepgram API key with transcription permissions."
790
+ }
791
+ }
792
+ },
793
+ example: {
794
+ apiKey: "dg_***"
795
+ }
796
+ },
797
+ healthCheck: {
798
+ method: "custom",
799
+ timeoutMs: 5000
800
+ },
801
+ docsUrl: "https://developers.deepgram.com/docs",
802
+ byokSetup: {
803
+ setupInstructions: "Create a Deepgram API key with speech-to-text permissions and store it in your secret provider."
804
+ }
805
+ });
806
+ function registerDeepgramIntegration(registry) {
807
+ return registry.register(deepgramIntegrationSpec);
808
+ }
809
+
810
+ // src/integrations/providers/openai-realtime.ts
811
+ import { StabilityEnum as StabilityEnum11 } from "@contractspec/lib.contracts-spec/ownership";
812
+ var openaiRealtimeIntegrationSpec = defineIntegration({
813
+ meta: {
814
+ key: "ai-voice-conv.openai",
815
+ version: "1.0.0",
816
+ category: "ai-voice-conversational",
817
+ title: "OpenAI Realtime Voice",
818
+ description: "OpenAI Realtime API integration for bidirectional conversational voice with GPT models.",
819
+ domain: "ai",
820
+ owners: ["platform.ai"],
821
+ tags: ["voice", "conversational", "realtime", "openai"],
822
+ stability: StabilityEnum11.Experimental
823
+ },
824
+ supportedModes: ["byok"],
825
+ capabilities: {
826
+ provides: [{ key: "ai.voice.conversational", version: "1.0.0" }]
827
+ },
828
+ configSchema: {
829
+ schema: {
830
+ type: "object",
831
+ properties: {
832
+ model: {
833
+ type: "string",
834
+ description: "OpenAI model for realtime conversations (e.g. gpt-4o-realtime-preview)."
835
+ },
836
+ defaultVoice: {
837
+ type: "string",
838
+ description: "Default voice for agent responses (e.g. alloy, echo, shimmer)."
839
+ },
840
+ turnDetection: {
841
+ type: "string",
842
+ enum: ["server_vad", "push_to_talk"],
843
+ description: "Turn detection strategy."
844
+ },
845
+ maxSessionDurationSeconds: {
846
+ type: "number",
847
+ description: "Maximum session duration in seconds."
848
+ }
849
+ }
850
+ },
851
+ example: {
852
+ model: "gpt-4o-realtime-preview",
853
+ defaultVoice: "alloy",
854
+ turnDetection: "server_vad",
855
+ maxSessionDurationSeconds: 600
856
+ }
857
+ },
858
+ secretSchema: {
859
+ schema: {
860
+ type: "object",
861
+ required: ["apiKey"],
862
+ properties: {
863
+ apiKey: {
864
+ type: "string",
865
+ description: "OpenAI API key with realtime API access."
866
+ }
867
+ }
868
+ },
869
+ example: {
870
+ apiKey: "sk-***"
871
+ }
872
+ },
873
+ healthCheck: {
874
+ method: "custom",
875
+ timeoutMs: 5000
876
+ },
877
+ docsUrl: "https://platform.openai.com/docs/guides/realtime",
878
+ byokSetup: {
879
+ setupInstructions: "Create an OpenAI API key with Realtime API access enabled and store it in your secret provider."
880
+ }
881
+ });
882
+ function registerOpenaiRealtimeIntegration(registry) {
883
+ return registry.register(openaiRealtimeIntegrationSpec);
884
+ }
885
+
886
+ // src/integrations/providers/gmail.ts
887
+ import { StabilityEnum as StabilityEnum12 } from "@contractspec/lib.contracts-spec/ownership";
731
888
  var gmailIntegrationSpec = defineIntegration({
732
889
  meta: {
733
890
  key: "email.gmail",
@@ -738,7 +895,7 @@ var gmailIntegrationSpec = defineIntegration({
738
895
  domain: "communications",
739
896
  owners: ["platform.messaging"],
740
897
  tags: ["email", "gmail"],
741
- stability: StabilityEnum10.Beta
898
+ stability: StabilityEnum12.Beta
742
899
  },
743
900
  supportedModes: ["managed", "byok"],
744
901
  capabilities: {
@@ -815,7 +972,7 @@ function registerGmailIntegration(registry) {
815
972
  }
816
973
 
817
974
  // src/integrations/providers/google-calendar.ts
818
- import { StabilityEnum as StabilityEnum11 } from "@contractspec/lib.contracts-spec/ownership";
975
+ import { StabilityEnum as StabilityEnum13 } from "@contractspec/lib.contracts-spec/ownership";
819
976
  var googleCalendarIntegrationSpec = defineIntegration({
820
977
  meta: {
821
978
  key: "calendar.google",
@@ -826,7 +983,7 @@ var googleCalendarIntegrationSpec = defineIntegration({
826
983
  domain: "productivity",
827
984
  owners: ["platform.messaging"],
828
985
  tags: ["calendar", "google"],
829
- stability: StabilityEnum11.Beta
986
+ stability: StabilityEnum13.Beta
830
987
  },
831
988
  supportedModes: ["managed", "byok"],
832
989
  capabilities: {
@@ -886,7 +1043,7 @@ function registerGoogleCalendarIntegration(registry) {
886
1043
  }
887
1044
 
888
1045
  // src/integrations/providers/twilio-sms.ts
889
- import { StabilityEnum as StabilityEnum12 } from "@contractspec/lib.contracts-spec/ownership";
1046
+ import { StabilityEnum as StabilityEnum14 } from "@contractspec/lib.contracts-spec/ownership";
890
1047
  var twilioSmsIntegrationSpec = defineIntegration({
891
1048
  meta: {
892
1049
  key: "sms.twilio",
@@ -897,7 +1054,7 @@ var twilioSmsIntegrationSpec = defineIntegration({
897
1054
  domain: "communications",
898
1055
  owners: ["platform.messaging"],
899
1056
  tags: ["sms", "messaging"],
900
- stability: StabilityEnum12.Stable
1057
+ stability: StabilityEnum14.Stable
901
1058
  },
902
1059
  supportedModes: ["managed", "byok"],
903
1060
  capabilities: {
@@ -956,7 +1113,7 @@ function registerTwilioSmsIntegration(registry) {
956
1113
  }
957
1114
 
958
1115
  // src/integrations/providers/gcs-storage.ts
959
- import { StabilityEnum as StabilityEnum13 } from "@contractspec/lib.contracts-spec/ownership";
1116
+ import { StabilityEnum as StabilityEnum15 } from "@contractspec/lib.contracts-spec/ownership";
960
1117
  var gcsStorageIntegrationSpec = defineIntegration({
961
1118
  meta: {
962
1119
  key: "storage.gcs",
@@ -967,7 +1124,7 @@ var gcsStorageIntegrationSpec = defineIntegration({
967
1124
  domain: "infrastructure",
968
1125
  owners: ["platform.infrastructure"],
969
1126
  tags: ["storage", "gcs", "google-cloud"],
970
- stability: StabilityEnum13.Beta
1127
+ stability: StabilityEnum15.Beta
971
1128
  },
972
1129
  supportedModes: ["managed", "byok"],
973
1130
  capabilities: {
@@ -1032,7 +1189,7 @@ function registerGcsStorageIntegration(registry) {
1032
1189
  }
1033
1190
 
1034
1191
  // src/integrations/providers/powens.ts
1035
- import { StabilityEnum as StabilityEnum14 } from "@contractspec/lib.contracts-spec/ownership";
1192
+ import { StabilityEnum as StabilityEnum16 } from "@contractspec/lib.contracts-spec/ownership";
1036
1193
  var powensIntegrationSpec = defineIntegration({
1037
1194
  meta: {
1038
1195
  key: "openbanking.powens",
@@ -1043,7 +1200,7 @@ var powensIntegrationSpec = defineIntegration({
1043
1200
  domain: "finance",
1044
1201
  owners: ["platform.finance"],
1045
1202
  tags: ["open-banking", "powens", "finance"],
1046
- stability: StabilityEnum14.Experimental
1203
+ stability: StabilityEnum16.Experimental
1047
1204
  },
1048
1205
  supportedModes: ["byok"],
1049
1206
  capabilities: {
@@ -1135,7 +1292,7 @@ function registerPowensIntegration(registry) {
1135
1292
  }
1136
1293
 
1137
1294
  // src/integrations/providers/posthog.ts
1138
- import { StabilityEnum as StabilityEnum15 } from "@contractspec/lib.contracts-spec/ownership";
1295
+ import { StabilityEnum as StabilityEnum17 } from "@contractspec/lib.contracts-spec/ownership";
1139
1296
  var posthogIntegrationSpec = defineIntegration({
1140
1297
  meta: {
1141
1298
  key: "analytics.posthog",
@@ -1146,7 +1303,7 @@ var posthogIntegrationSpec = defineIntegration({
1146
1303
  domain: "analytics",
1147
1304
  owners: ["@platform.integrations"],
1148
1305
  tags: ["analytics", "posthog", "llm", "ai"],
1149
- stability: StabilityEnum15.Beta
1306
+ stability: StabilityEnum17.Beta
1150
1307
  },
1151
1308
  supportedModes: ["managed", "byok"],
1152
1309
  capabilities: {
@@ -1220,7 +1377,7 @@ function registerPosthogIntegration(registry) {
1220
1377
  }
1221
1378
 
1222
1379
  // src/integrations/providers/linear.ts
1223
- import { StabilityEnum as StabilityEnum16 } from "@contractspec/lib.contracts-spec/ownership";
1380
+ import { StabilityEnum as StabilityEnum18 } from "@contractspec/lib.contracts-spec/ownership";
1224
1381
  var linearIntegrationSpec = defineIntegration({
1225
1382
  meta: {
1226
1383
  key: "project-management.linear",
@@ -1231,7 +1388,7 @@ var linearIntegrationSpec = defineIntegration({
1231
1388
  domain: "productivity",
1232
1389
  owners: ["@platform.integrations"],
1233
1390
  tags: ["project-management", "linear"],
1234
- stability: StabilityEnum16.Beta
1391
+ stability: StabilityEnum18.Beta
1235
1392
  },
1236
1393
  supportedModes: ["managed", "byok"],
1237
1394
  capabilities: {
@@ -1306,7 +1463,7 @@ function registerLinearIntegration(registry) {
1306
1463
  }
1307
1464
 
1308
1465
  // src/integrations/providers/jira.ts
1309
- import { StabilityEnum as StabilityEnum17 } from "@contractspec/lib.contracts-spec/ownership";
1466
+ import { StabilityEnum as StabilityEnum19 } from "@contractspec/lib.contracts-spec/ownership";
1310
1467
  var jiraIntegrationSpec = defineIntegration({
1311
1468
  meta: {
1312
1469
  key: "project-management.jira",
@@ -1317,7 +1474,7 @@ var jiraIntegrationSpec = defineIntegration({
1317
1474
  domain: "productivity",
1318
1475
  owners: ["@platform.integrations"],
1319
1476
  tags: ["project-management", "jira"],
1320
- stability: StabilityEnum17.Beta
1477
+ stability: StabilityEnum19.Beta
1321
1478
  },
1322
1479
  supportedModes: ["managed", "byok"],
1323
1480
  capabilities: {
@@ -1393,7 +1550,7 @@ function registerJiraIntegration(registry) {
1393
1550
  }
1394
1551
 
1395
1552
  // src/integrations/providers/notion.ts
1396
- import { StabilityEnum as StabilityEnum18 } from "@contractspec/lib.contracts-spec/ownership";
1553
+ import { StabilityEnum as StabilityEnum20 } from "@contractspec/lib.contracts-spec/ownership";
1397
1554
  var notionIntegrationSpec = defineIntegration({
1398
1555
  meta: {
1399
1556
  key: "project-management.notion",
@@ -1404,7 +1561,7 @@ var notionIntegrationSpec = defineIntegration({
1404
1561
  domain: "productivity",
1405
1562
  owners: ["@platform.integrations"],
1406
1563
  tags: ["project-management", "notion"],
1407
- stability: StabilityEnum18.Beta
1564
+ stability: StabilityEnum20.Beta
1408
1565
  },
1409
1566
  supportedModes: ["managed", "byok"],
1410
1567
  capabilities: {
@@ -1485,7 +1642,7 @@ function registerNotionIntegration(registry) {
1485
1642
  }
1486
1643
 
1487
1644
  // src/integrations/providers/granola.ts
1488
- import { StabilityEnum as StabilityEnum19 } from "@contractspec/lib.contracts-spec/ownership";
1645
+ import { StabilityEnum as StabilityEnum21 } from "@contractspec/lib.contracts-spec/ownership";
1489
1646
  var granolaIntegrationSpec = defineIntegration({
1490
1647
  meta: {
1491
1648
  key: "meeting-recorder.granola",
@@ -1496,7 +1653,7 @@ var granolaIntegrationSpec = defineIntegration({
1496
1653
  domain: "productivity",
1497
1654
  owners: ["platform.integrations"],
1498
1655
  tags: ["meeting-recorder", "granola", "transcripts"],
1499
- stability: StabilityEnum19.Experimental
1656
+ stability: StabilityEnum21.Experimental
1500
1657
  },
1501
1658
  supportedModes: ["byok"],
1502
1659
  capabilities: {
@@ -1571,7 +1728,7 @@ function registerGranolaIntegration(registry) {
1571
1728
  }
1572
1729
 
1573
1730
  // src/integrations/providers/tldv.ts
1574
- import { StabilityEnum as StabilityEnum20 } from "@contractspec/lib.contracts-spec/ownership";
1731
+ import { StabilityEnum as StabilityEnum22 } from "@contractspec/lib.contracts-spec/ownership";
1575
1732
  var tldvIntegrationSpec = defineIntegration({
1576
1733
  meta: {
1577
1734
  key: "meeting-recorder.tldv",
@@ -1582,7 +1739,7 @@ var tldvIntegrationSpec = defineIntegration({
1582
1739
  domain: "productivity",
1583
1740
  owners: ["platform.integrations"],
1584
1741
  tags: ["meeting-recorder", "tldv", "transcripts"],
1585
- stability: StabilityEnum20.Experimental
1742
+ stability: StabilityEnum22.Experimental
1586
1743
  },
1587
1744
  supportedModes: ["byok"],
1588
1745
  capabilities: {
@@ -1656,7 +1813,7 @@ function registerTldvIntegration(registry) {
1656
1813
  }
1657
1814
 
1658
1815
  // src/integrations/providers/fireflies.ts
1659
- import { StabilityEnum as StabilityEnum21 } from "@contractspec/lib.contracts-spec/ownership";
1816
+ import { StabilityEnum as StabilityEnum23 } from "@contractspec/lib.contracts-spec/ownership";
1660
1817
  var firefliesIntegrationSpec = defineIntegration({
1661
1818
  meta: {
1662
1819
  key: "meeting-recorder.fireflies",
@@ -1667,7 +1824,7 @@ var firefliesIntegrationSpec = defineIntegration({
1667
1824
  domain: "productivity",
1668
1825
  owners: ["platform.integrations"],
1669
1826
  tags: ["meeting-recorder", "fireflies", "transcripts"],
1670
- stability: StabilityEnum21.Experimental
1827
+ stability: StabilityEnum23.Experimental
1671
1828
  },
1672
1829
  supportedModes: ["byok"],
1673
1830
  capabilities: {
@@ -1741,7 +1898,7 @@ function registerFirefliesIntegration(registry) {
1741
1898
  }
1742
1899
 
1743
1900
  // src/integrations/providers/fathom.ts
1744
- import { StabilityEnum as StabilityEnum22 } from "@contractspec/lib.contracts-spec/ownership";
1901
+ import { StabilityEnum as StabilityEnum24 } from "@contractspec/lib.contracts-spec/ownership";
1745
1902
  var fathomIntegrationSpec = defineIntegration({
1746
1903
  meta: {
1747
1904
  key: "meeting-recorder.fathom",
@@ -1752,7 +1909,7 @@ var fathomIntegrationSpec = defineIntegration({
1752
1909
  domain: "productivity",
1753
1910
  owners: ["platform.integrations"],
1754
1911
  tags: ["meeting-recorder", "fathom", "transcripts"],
1755
- stability: StabilityEnum22.Experimental
1912
+ stability: StabilityEnum24.Experimental
1756
1913
  },
1757
1914
  supportedModes: ["byok"],
1758
1915
  capabilities: {
@@ -1870,6 +2027,8 @@ function createDefaultIntegrationSpecRegistry() {
1870
2027
  registerTldvIntegration(registry);
1871
2028
  registerFirefliesIntegration(registry);
1872
2029
  registerFathomIntegration(registry);
2030
+ registerDeepgramIntegration(registry);
2031
+ registerOpenaiRealtimeIntegration(registry);
1873
2032
  return registry;
1874
2033
  }
1875
2034
  export {