@contractspec/lib.contracts-spec 2.4.0 → 2.6.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 (40) hide show
  1. package/dist/integrations/index.js +379 -53
  2. package/dist/integrations/providers/deepgram.d.ts +3 -0
  3. package/dist/integrations/providers/deepgram.js +129 -0
  4. package/dist/integrations/providers/elevenlabs.js +6 -3
  5. package/dist/integrations/providers/fal-image.d.ts +3 -0
  6. package/dist/integrations/providers/fal-image.js +122 -0
  7. package/dist/integrations/providers/fal.js +2 -2
  8. package/dist/integrations/providers/gradium.js +2 -2
  9. package/dist/integrations/providers/image.d.ts +85 -0
  10. package/dist/integrations/providers/image.js +46 -0
  11. package/dist/integrations/providers/index.d.ts +6 -0
  12. package/dist/integrations/providers/index.js +380 -54
  13. package/dist/integrations/providers/openai-image.d.ts +3 -0
  14. package/dist/integrations/providers/openai-image.js +126 -0
  15. package/dist/integrations/providers/openai-realtime.d.ts +3 -0
  16. package/dist/integrations/providers/openai-realtime.js +127 -0
  17. package/dist/integrations/providers/registry.js +192 -33
  18. package/dist/integrations/providers/voice-video-sync.d.ts +29 -0
  19. package/dist/integrations/providers/voice-video-sync.js +1 -0
  20. package/dist/integrations/providers/voice.d.ts +149 -12
  21. package/dist/integrations/spec.d.ts +1 -1
  22. package/dist/node/integrations/index.js +379 -53
  23. package/dist/node/integrations/providers/deepgram.js +129 -0
  24. package/dist/node/integrations/providers/elevenlabs.js +6 -3
  25. package/dist/node/integrations/providers/fal-image.js +122 -0
  26. package/dist/node/integrations/providers/fal.js +2 -2
  27. package/dist/node/integrations/providers/gradium.js +2 -2
  28. package/dist/node/integrations/providers/image.js +46 -0
  29. package/dist/node/integrations/providers/index.js +380 -54
  30. package/dist/node/integrations/providers/openai-image.js +126 -0
  31. package/dist/node/integrations/providers/openai-realtime.js +127 -0
  32. package/dist/node/integrations/providers/registry.js +192 -33
  33. package/dist/node/integrations/providers/voice-video-sync.js +0 -0
  34. package/dist/node/translations/i18n-factory.js +229 -0
  35. package/dist/node/translations/index.js +64 -4
  36. package/dist/translations/i18n-factory.d.ts +90 -0
  37. package/dist/translations/i18n-factory.js +229 -0
  38. package/dist/translations/index.d.ts +1 -0
  39. package/dist/translations/index.js +64 -4
  40. package/package.json +88 -4
@@ -0,0 +1,126 @@
1
+ import { createRequire } from "node:module";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __moduleCache = /* @__PURE__ */ new WeakMap;
7
+ var __toCommonJS = (from) => {
8
+ var entry = __moduleCache.get(from), desc;
9
+ if (entry)
10
+ return entry;
11
+ entry = __defProp({}, "__esModule", { value: true });
12
+ if (from && typeof from === "object" || typeof from === "function")
13
+ __getOwnPropNames(from).map((key) => !__hasOwnProp.call(entry, key) && __defProp(entry, key, {
14
+ get: () => from[key],
15
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
+ }));
17
+ __moduleCache.set(from, entry);
18
+ return entry;
19
+ };
20
+ var __export = (target, all) => {
21
+ for (var name in all)
22
+ __defProp(target, name, {
23
+ get: all[name],
24
+ enumerable: true,
25
+ configurable: true,
26
+ set: (newValue) => all[name] = () => newValue
27
+ });
28
+ };
29
+ var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
30
+ var __require = /* @__PURE__ */ createRequire(import.meta.url);
31
+
32
+ // src/integrations/spec.ts
33
+ import { SpecContractRegistry } from "@contractspec/lib.contracts-spec/registry";
34
+ var integrationKey = (meta) => `${meta.key}.v${meta.version}`;
35
+
36
+ class IntegrationSpecRegistry extends SpecContractRegistry {
37
+ constructor(items) {
38
+ super("integration", items);
39
+ }
40
+ getByCategory(category) {
41
+ return this.list().filter((spec) => spec.meta.category === category);
42
+ }
43
+ }
44
+ function makeIntegrationSpecKey(meta) {
45
+ return integrationKey(meta);
46
+ }
47
+ var defineIntegration = (spec) => spec;
48
+
49
+ // src/integrations/providers/openai-image.ts
50
+ import { StabilityEnum } from "@contractspec/lib.contracts-spec/ownership";
51
+ var openaiImageIntegrationSpec = defineIntegration({
52
+ meta: {
53
+ key: "ai-image.openai",
54
+ version: "1.0.0",
55
+ category: "ai-image",
56
+ title: "OpenAI Image Generation",
57
+ description: "OpenAI integration for AI image generation using DALL-E and gpt-image models.",
58
+ domain: "ai",
59
+ owners: ["platform.ai"],
60
+ tags: ["image", "generation", "dall-e", "gpt-image"],
61
+ stability: StabilityEnum.Experimental
62
+ },
63
+ supportedModes: ["managed", "byok"],
64
+ capabilities: {
65
+ provides: [{ key: "ai.image.generation", version: "1.0.0" }]
66
+ },
67
+ configSchema: {
68
+ schema: {
69
+ type: "object",
70
+ properties: {
71
+ model: {
72
+ type: "string",
73
+ description: "OpenAI image model identifier (e.g. dall-e-3, gpt-image-1)."
74
+ },
75
+ defaultSize: {
76
+ type: "string",
77
+ enum: ["1024x1024", "1024x1792", "1792x1024"]
78
+ },
79
+ defaultQuality: {
80
+ type: "string",
81
+ enum: ["standard", "hd"]
82
+ }
83
+ }
84
+ },
85
+ example: {
86
+ model: "dall-e-3",
87
+ defaultSize: "1024x1024",
88
+ defaultQuality: "standard"
89
+ }
90
+ },
91
+ secretSchema: {
92
+ schema: {
93
+ type: "object",
94
+ required: ["apiKey"],
95
+ properties: {
96
+ apiKey: {
97
+ type: "string",
98
+ description: "OpenAI API key with image generation permissions."
99
+ }
100
+ }
101
+ },
102
+ example: {
103
+ apiKey: "sk-***"
104
+ }
105
+ },
106
+ healthCheck: {
107
+ method: "custom",
108
+ timeoutMs: 5000
109
+ },
110
+ docsUrl: "https://platform.openai.com/docs/guides/images",
111
+ constraints: {
112
+ rateLimit: {
113
+ rpm: 50
114
+ }
115
+ },
116
+ byokSetup: {
117
+ setupInstructions: "Create an OpenAI API key with image generation access enabled."
118
+ }
119
+ });
120
+ function registerOpenaiImageIntegration(registry) {
121
+ return registry.register(openaiImageIntegrationSpec);
122
+ }
123
+ export {
124
+ registerOpenaiImageIntegration,
125
+ openaiImageIntegrationSpec
126
+ };
@@ -0,0 +1,127 @@
1
+ import { createRequire } from "node:module";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __moduleCache = /* @__PURE__ */ new WeakMap;
7
+ var __toCommonJS = (from) => {
8
+ var entry = __moduleCache.get(from), desc;
9
+ if (entry)
10
+ return entry;
11
+ entry = __defProp({}, "__esModule", { value: true });
12
+ if (from && typeof from === "object" || typeof from === "function")
13
+ __getOwnPropNames(from).map((key) => !__hasOwnProp.call(entry, key) && __defProp(entry, key, {
14
+ get: () => from[key],
15
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
+ }));
17
+ __moduleCache.set(from, entry);
18
+ return entry;
19
+ };
20
+ var __export = (target, all) => {
21
+ for (var name in all)
22
+ __defProp(target, name, {
23
+ get: all[name],
24
+ enumerable: true,
25
+ configurable: true,
26
+ set: (newValue) => all[name] = () => newValue
27
+ });
28
+ };
29
+ var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
30
+ var __require = /* @__PURE__ */ createRequire(import.meta.url);
31
+
32
+ // src/integrations/spec.ts
33
+ import { SpecContractRegistry } from "@contractspec/lib.contracts-spec/registry";
34
+ var integrationKey = (meta) => `${meta.key}.v${meta.version}`;
35
+
36
+ class IntegrationSpecRegistry extends SpecContractRegistry {
37
+ constructor(items) {
38
+ super("integration", items);
39
+ }
40
+ getByCategory(category) {
41
+ return this.list().filter((spec) => spec.meta.category === category);
42
+ }
43
+ }
44
+ function makeIntegrationSpecKey(meta) {
45
+ return integrationKey(meta);
46
+ }
47
+ var defineIntegration = (spec) => spec;
48
+
49
+ // src/integrations/providers/openai-realtime.ts
50
+ import { StabilityEnum } from "@contractspec/lib.contracts-spec/ownership";
51
+ var openaiRealtimeIntegrationSpec = defineIntegration({
52
+ meta: {
53
+ key: "ai-voice-conv.openai",
54
+ version: "1.0.0",
55
+ category: "ai-voice-conversational",
56
+ title: "OpenAI Realtime Voice",
57
+ description: "OpenAI Realtime API integration for bidirectional conversational voice with GPT models.",
58
+ domain: "ai",
59
+ owners: ["platform.ai"],
60
+ tags: ["voice", "conversational", "realtime", "openai"],
61
+ stability: StabilityEnum.Experimental
62
+ },
63
+ supportedModes: ["byok"],
64
+ capabilities: {
65
+ provides: [{ key: "ai.voice.conversational", version: "1.0.0" }]
66
+ },
67
+ configSchema: {
68
+ schema: {
69
+ type: "object",
70
+ properties: {
71
+ model: {
72
+ type: "string",
73
+ description: "OpenAI model for realtime conversations (e.g. gpt-4o-realtime-preview)."
74
+ },
75
+ defaultVoice: {
76
+ type: "string",
77
+ description: "Default voice for agent responses (e.g. alloy, echo, shimmer)."
78
+ },
79
+ turnDetection: {
80
+ type: "string",
81
+ enum: ["server_vad", "push_to_talk"],
82
+ description: "Turn detection strategy."
83
+ },
84
+ maxSessionDurationSeconds: {
85
+ type: "number",
86
+ description: "Maximum session duration in seconds."
87
+ }
88
+ }
89
+ },
90
+ example: {
91
+ model: "gpt-4o-realtime-preview",
92
+ defaultVoice: "alloy",
93
+ turnDetection: "server_vad",
94
+ maxSessionDurationSeconds: 600
95
+ }
96
+ },
97
+ secretSchema: {
98
+ schema: {
99
+ type: "object",
100
+ required: ["apiKey"],
101
+ properties: {
102
+ apiKey: {
103
+ type: "string",
104
+ description: "OpenAI API key with realtime API access."
105
+ }
106
+ }
107
+ },
108
+ example: {
109
+ apiKey: "sk-***"
110
+ }
111
+ },
112
+ healthCheck: {
113
+ method: "custom",
114
+ timeoutMs: 5000
115
+ },
116
+ docsUrl: "https://platform.openai.com/docs/guides/realtime",
117
+ byokSetup: {
118
+ setupInstructions: "Create an OpenAI API key with Realtime API access enabled and store it in your secret provider."
119
+ }
120
+ });
121
+ function registerOpenaiRealtimeIntegration(registry) {
122
+ return registry.register(openaiRealtimeIntegrationSpec);
123
+ }
124
+ export {
125
+ registerOpenaiRealtimeIntegration,
126
+ openaiRealtimeIntegrationSpec
127
+ };
@@ -518,17 +518,20 @@ var elevenLabsIntegrationSpec = defineIntegration({
518
518
  meta: {
519
519
  key: "ai-voice.elevenlabs",
520
520
  version: "1.0.0",
521
- category: "ai-voice",
521
+ category: "ai-voice-tts",
522
522
  title: "ElevenLabs Text-to-Speech",
523
523
  description: "ElevenLabs integration for neural voice synthesis and voice catalog access.",
524
524
  domain: "ai",
525
525
  owners: ["platform.ai"],
526
- tags: ["voice", "tts"],
526
+ tags: ["voice", "tts", "stt"],
527
527
  stability: StabilityEnum7.Beta
528
528
  },
529
529
  supportedModes: ["managed", "byok"],
530
530
  capabilities: {
531
- provides: [{ key: "ai.voice.synthesis", version: "1.0.0" }]
531
+ provides: [
532
+ { key: "ai.voice.tts", version: "1.0.0" },
533
+ { key: "ai.voice.stt", version: "1.0.0" }
534
+ ]
532
535
  },
533
536
  configSchema: {
534
537
  schema: {
@@ -583,7 +586,7 @@ var gradiumIntegrationSpec = defineIntegration({
583
586
  meta: {
584
587
  key: "ai-voice.gradium",
585
588
  version: "1.0.0",
586
- category: "ai-voice",
589
+ category: "ai-voice-tts",
587
590
  title: "Gradium Text-to-Speech",
588
591
  description: "Gradium integration for low-latency voice synthesis and voice catalog access.",
589
592
  domain: "ai",
@@ -593,7 +596,7 @@ var gradiumIntegrationSpec = defineIntegration({
593
596
  },
594
597
  supportedModes: ["byok"],
595
598
  capabilities: {
596
- provides: [{ key: "ai.voice.synthesis", version: "1.0.0" }]
599
+ provides: [{ key: "ai.voice.tts", version: "1.0.0" }]
597
600
  },
598
601
  configSchema: {
599
602
  schema: {
@@ -672,7 +675,7 @@ var falIntegrationSpec = defineIntegration({
672
675
  meta: {
673
676
  key: "ai-voice.fal",
674
677
  version: "1.0.0",
675
- category: "ai-voice",
678
+ category: "ai-voice-tts",
676
679
  title: "Fal Chatterbox Text-to-Speech",
677
680
  description: "Fal integration for voice synthesis using Chatterbox text-to-speech models.",
678
681
  domain: "ai",
@@ -682,7 +685,7 @@ var falIntegrationSpec = defineIntegration({
682
685
  },
683
686
  supportedModes: ["byok"],
684
687
  capabilities: {
685
- provides: [{ key: "ai.voice.synthesis", version: "1.0.0" }]
688
+ provides: [{ key: "ai.voice.tts", version: "1.0.0" }]
686
689
  },
687
690
  configSchema: {
688
691
  schema: {
@@ -757,8 +760,162 @@ function registerFalIntegration(registry) {
757
760
  return registry.register(falIntegrationSpec);
758
761
  }
759
762
 
760
- // src/integrations/providers/gmail.ts
763
+ // src/integrations/providers/deepgram.ts
761
764
  import { StabilityEnum as StabilityEnum10 } from "@contractspec/lib.contracts-spec/ownership";
765
+ var deepgramIntegrationSpec = defineIntegration({
766
+ meta: {
767
+ key: "ai-voice-stt.deepgram",
768
+ version: "1.0.0",
769
+ category: "ai-voice-stt",
770
+ title: "Deepgram Speech-to-Text",
771
+ description: "Deepgram integration for real-time and batch speech-to-text transcription with speaker diarization.",
772
+ domain: "ai",
773
+ owners: ["platform.ai"],
774
+ tags: ["voice", "stt", "transcription", "diarization"],
775
+ stability: StabilityEnum10.Experimental
776
+ },
777
+ supportedModes: ["byok"],
778
+ capabilities: {
779
+ provides: [
780
+ { key: "ai.voice.stt", version: "1.0.0" },
781
+ { key: "ai.voice.conversational", version: "1.0.0" }
782
+ ]
783
+ },
784
+ configSchema: {
785
+ schema: {
786
+ type: "object",
787
+ properties: {
788
+ model: {
789
+ type: "string",
790
+ description: "Deepgram model to use (e.g. nova-3, nova-2, enhanced)."
791
+ },
792
+ language: {
793
+ type: "string",
794
+ description: "Default language code for transcription (e.g. en-US)."
795
+ },
796
+ enableDiarization: {
797
+ type: "boolean",
798
+ description: "Enable speaker diarization by default."
799
+ },
800
+ enableSmartFormat: {
801
+ type: "boolean",
802
+ description: "Enable smart formatting (punctuation, capitalization)."
803
+ }
804
+ }
805
+ },
806
+ example: {
807
+ model: "nova-3",
808
+ language: "en-US",
809
+ enableDiarization: true,
810
+ enableSmartFormat: true
811
+ }
812
+ },
813
+ secretSchema: {
814
+ schema: {
815
+ type: "object",
816
+ required: ["apiKey"],
817
+ properties: {
818
+ apiKey: {
819
+ type: "string",
820
+ description: "Deepgram API key with transcription permissions."
821
+ }
822
+ }
823
+ },
824
+ example: {
825
+ apiKey: "dg_***"
826
+ }
827
+ },
828
+ healthCheck: {
829
+ method: "custom",
830
+ timeoutMs: 5000
831
+ },
832
+ docsUrl: "https://developers.deepgram.com/docs",
833
+ byokSetup: {
834
+ setupInstructions: "Create a Deepgram API key with speech-to-text permissions and store it in your secret provider."
835
+ }
836
+ });
837
+ function registerDeepgramIntegration(registry) {
838
+ return registry.register(deepgramIntegrationSpec);
839
+ }
840
+
841
+ // src/integrations/providers/openai-realtime.ts
842
+ import { StabilityEnum as StabilityEnum11 } from "@contractspec/lib.contracts-spec/ownership";
843
+ var openaiRealtimeIntegrationSpec = defineIntegration({
844
+ meta: {
845
+ key: "ai-voice-conv.openai",
846
+ version: "1.0.0",
847
+ category: "ai-voice-conversational",
848
+ title: "OpenAI Realtime Voice",
849
+ description: "OpenAI Realtime API integration for bidirectional conversational voice with GPT models.",
850
+ domain: "ai",
851
+ owners: ["platform.ai"],
852
+ tags: ["voice", "conversational", "realtime", "openai"],
853
+ stability: StabilityEnum11.Experimental
854
+ },
855
+ supportedModes: ["byok"],
856
+ capabilities: {
857
+ provides: [{ key: "ai.voice.conversational", version: "1.0.0" }]
858
+ },
859
+ configSchema: {
860
+ schema: {
861
+ type: "object",
862
+ properties: {
863
+ model: {
864
+ type: "string",
865
+ description: "OpenAI model for realtime conversations (e.g. gpt-4o-realtime-preview)."
866
+ },
867
+ defaultVoice: {
868
+ type: "string",
869
+ description: "Default voice for agent responses (e.g. alloy, echo, shimmer)."
870
+ },
871
+ turnDetection: {
872
+ type: "string",
873
+ enum: ["server_vad", "push_to_talk"],
874
+ description: "Turn detection strategy."
875
+ },
876
+ maxSessionDurationSeconds: {
877
+ type: "number",
878
+ description: "Maximum session duration in seconds."
879
+ }
880
+ }
881
+ },
882
+ example: {
883
+ model: "gpt-4o-realtime-preview",
884
+ defaultVoice: "alloy",
885
+ turnDetection: "server_vad",
886
+ maxSessionDurationSeconds: 600
887
+ }
888
+ },
889
+ secretSchema: {
890
+ schema: {
891
+ type: "object",
892
+ required: ["apiKey"],
893
+ properties: {
894
+ apiKey: {
895
+ type: "string",
896
+ description: "OpenAI API key with realtime API access."
897
+ }
898
+ }
899
+ },
900
+ example: {
901
+ apiKey: "sk-***"
902
+ }
903
+ },
904
+ healthCheck: {
905
+ method: "custom",
906
+ timeoutMs: 5000
907
+ },
908
+ docsUrl: "https://platform.openai.com/docs/guides/realtime",
909
+ byokSetup: {
910
+ setupInstructions: "Create an OpenAI API key with Realtime API access enabled and store it in your secret provider."
911
+ }
912
+ });
913
+ function registerOpenaiRealtimeIntegration(registry) {
914
+ return registry.register(openaiRealtimeIntegrationSpec);
915
+ }
916
+
917
+ // src/integrations/providers/gmail.ts
918
+ import { StabilityEnum as StabilityEnum12 } from "@contractspec/lib.contracts-spec/ownership";
762
919
  var gmailIntegrationSpec = defineIntegration({
763
920
  meta: {
764
921
  key: "email.gmail",
@@ -769,7 +926,7 @@ var gmailIntegrationSpec = defineIntegration({
769
926
  domain: "communications",
770
927
  owners: ["platform.messaging"],
771
928
  tags: ["email", "gmail"],
772
- stability: StabilityEnum10.Beta
929
+ stability: StabilityEnum12.Beta
773
930
  },
774
931
  supportedModes: ["managed", "byok"],
775
932
  capabilities: {
@@ -846,7 +1003,7 @@ function registerGmailIntegration(registry) {
846
1003
  }
847
1004
 
848
1005
  // src/integrations/providers/google-calendar.ts
849
- import { StabilityEnum as StabilityEnum11 } from "@contractspec/lib.contracts-spec/ownership";
1006
+ import { StabilityEnum as StabilityEnum13 } from "@contractspec/lib.contracts-spec/ownership";
850
1007
  var googleCalendarIntegrationSpec = defineIntegration({
851
1008
  meta: {
852
1009
  key: "calendar.google",
@@ -857,7 +1014,7 @@ var googleCalendarIntegrationSpec = defineIntegration({
857
1014
  domain: "productivity",
858
1015
  owners: ["platform.messaging"],
859
1016
  tags: ["calendar", "google"],
860
- stability: StabilityEnum11.Beta
1017
+ stability: StabilityEnum13.Beta
861
1018
  },
862
1019
  supportedModes: ["managed", "byok"],
863
1020
  capabilities: {
@@ -917,7 +1074,7 @@ function registerGoogleCalendarIntegration(registry) {
917
1074
  }
918
1075
 
919
1076
  // src/integrations/providers/twilio-sms.ts
920
- import { StabilityEnum as StabilityEnum12 } from "@contractspec/lib.contracts-spec/ownership";
1077
+ import { StabilityEnum as StabilityEnum14 } from "@contractspec/lib.contracts-spec/ownership";
921
1078
  var twilioSmsIntegrationSpec = defineIntegration({
922
1079
  meta: {
923
1080
  key: "sms.twilio",
@@ -928,7 +1085,7 @@ var twilioSmsIntegrationSpec = defineIntegration({
928
1085
  domain: "communications",
929
1086
  owners: ["platform.messaging"],
930
1087
  tags: ["sms", "messaging"],
931
- stability: StabilityEnum12.Stable
1088
+ stability: StabilityEnum14.Stable
932
1089
  },
933
1090
  supportedModes: ["managed", "byok"],
934
1091
  capabilities: {
@@ -987,7 +1144,7 @@ function registerTwilioSmsIntegration(registry) {
987
1144
  }
988
1145
 
989
1146
  // src/integrations/providers/gcs-storage.ts
990
- import { StabilityEnum as StabilityEnum13 } from "@contractspec/lib.contracts-spec/ownership";
1147
+ import { StabilityEnum as StabilityEnum15 } from "@contractspec/lib.contracts-spec/ownership";
991
1148
  var gcsStorageIntegrationSpec = defineIntegration({
992
1149
  meta: {
993
1150
  key: "storage.gcs",
@@ -998,7 +1155,7 @@ var gcsStorageIntegrationSpec = defineIntegration({
998
1155
  domain: "infrastructure",
999
1156
  owners: ["platform.infrastructure"],
1000
1157
  tags: ["storage", "gcs", "google-cloud"],
1001
- stability: StabilityEnum13.Beta
1158
+ stability: StabilityEnum15.Beta
1002
1159
  },
1003
1160
  supportedModes: ["managed", "byok"],
1004
1161
  capabilities: {
@@ -1063,7 +1220,7 @@ function registerGcsStorageIntegration(registry) {
1063
1220
  }
1064
1221
 
1065
1222
  // src/integrations/providers/powens.ts
1066
- import { StabilityEnum as StabilityEnum14 } from "@contractspec/lib.contracts-spec/ownership";
1223
+ import { StabilityEnum as StabilityEnum16 } from "@contractspec/lib.contracts-spec/ownership";
1067
1224
  var powensIntegrationSpec = defineIntegration({
1068
1225
  meta: {
1069
1226
  key: "openbanking.powens",
@@ -1074,7 +1231,7 @@ var powensIntegrationSpec = defineIntegration({
1074
1231
  domain: "finance",
1075
1232
  owners: ["platform.finance"],
1076
1233
  tags: ["open-banking", "powens", "finance"],
1077
- stability: StabilityEnum14.Experimental
1234
+ stability: StabilityEnum16.Experimental
1078
1235
  },
1079
1236
  supportedModes: ["byok"],
1080
1237
  capabilities: {
@@ -1166,7 +1323,7 @@ function registerPowensIntegration(registry) {
1166
1323
  }
1167
1324
 
1168
1325
  // src/integrations/providers/posthog.ts
1169
- import { StabilityEnum as StabilityEnum15 } from "@contractspec/lib.contracts-spec/ownership";
1326
+ import { StabilityEnum as StabilityEnum17 } from "@contractspec/lib.contracts-spec/ownership";
1170
1327
  var posthogIntegrationSpec = defineIntegration({
1171
1328
  meta: {
1172
1329
  key: "analytics.posthog",
@@ -1177,7 +1334,7 @@ var posthogIntegrationSpec = defineIntegration({
1177
1334
  domain: "analytics",
1178
1335
  owners: ["@platform.integrations"],
1179
1336
  tags: ["analytics", "posthog", "llm", "ai"],
1180
- stability: StabilityEnum15.Beta
1337
+ stability: StabilityEnum17.Beta
1181
1338
  },
1182
1339
  supportedModes: ["managed", "byok"],
1183
1340
  capabilities: {
@@ -1251,7 +1408,7 @@ function registerPosthogIntegration(registry) {
1251
1408
  }
1252
1409
 
1253
1410
  // src/integrations/providers/linear.ts
1254
- import { StabilityEnum as StabilityEnum16 } from "@contractspec/lib.contracts-spec/ownership";
1411
+ import { StabilityEnum as StabilityEnum18 } from "@contractspec/lib.contracts-spec/ownership";
1255
1412
  var linearIntegrationSpec = defineIntegration({
1256
1413
  meta: {
1257
1414
  key: "project-management.linear",
@@ -1262,7 +1419,7 @@ var linearIntegrationSpec = defineIntegration({
1262
1419
  domain: "productivity",
1263
1420
  owners: ["@platform.integrations"],
1264
1421
  tags: ["project-management", "linear"],
1265
- stability: StabilityEnum16.Beta
1422
+ stability: StabilityEnum18.Beta
1266
1423
  },
1267
1424
  supportedModes: ["managed", "byok"],
1268
1425
  capabilities: {
@@ -1337,7 +1494,7 @@ function registerLinearIntegration(registry) {
1337
1494
  }
1338
1495
 
1339
1496
  // src/integrations/providers/jira.ts
1340
- import { StabilityEnum as StabilityEnum17 } from "@contractspec/lib.contracts-spec/ownership";
1497
+ import { StabilityEnum as StabilityEnum19 } from "@contractspec/lib.contracts-spec/ownership";
1341
1498
  var jiraIntegrationSpec = defineIntegration({
1342
1499
  meta: {
1343
1500
  key: "project-management.jira",
@@ -1348,7 +1505,7 @@ var jiraIntegrationSpec = defineIntegration({
1348
1505
  domain: "productivity",
1349
1506
  owners: ["@platform.integrations"],
1350
1507
  tags: ["project-management", "jira"],
1351
- stability: StabilityEnum17.Beta
1508
+ stability: StabilityEnum19.Beta
1352
1509
  },
1353
1510
  supportedModes: ["managed", "byok"],
1354
1511
  capabilities: {
@@ -1424,7 +1581,7 @@ function registerJiraIntegration(registry) {
1424
1581
  }
1425
1582
 
1426
1583
  // src/integrations/providers/notion.ts
1427
- import { StabilityEnum as StabilityEnum18 } from "@contractspec/lib.contracts-spec/ownership";
1584
+ import { StabilityEnum as StabilityEnum20 } from "@contractspec/lib.contracts-spec/ownership";
1428
1585
  var notionIntegrationSpec = defineIntegration({
1429
1586
  meta: {
1430
1587
  key: "project-management.notion",
@@ -1435,7 +1592,7 @@ var notionIntegrationSpec = defineIntegration({
1435
1592
  domain: "productivity",
1436
1593
  owners: ["@platform.integrations"],
1437
1594
  tags: ["project-management", "notion"],
1438
- stability: StabilityEnum18.Beta
1595
+ stability: StabilityEnum20.Beta
1439
1596
  },
1440
1597
  supportedModes: ["managed", "byok"],
1441
1598
  capabilities: {
@@ -1516,7 +1673,7 @@ function registerNotionIntegration(registry) {
1516
1673
  }
1517
1674
 
1518
1675
  // src/integrations/providers/granola.ts
1519
- import { StabilityEnum as StabilityEnum19 } from "@contractspec/lib.contracts-spec/ownership";
1676
+ import { StabilityEnum as StabilityEnum21 } from "@contractspec/lib.contracts-spec/ownership";
1520
1677
  var granolaIntegrationSpec = defineIntegration({
1521
1678
  meta: {
1522
1679
  key: "meeting-recorder.granola",
@@ -1527,7 +1684,7 @@ var granolaIntegrationSpec = defineIntegration({
1527
1684
  domain: "productivity",
1528
1685
  owners: ["platform.integrations"],
1529
1686
  tags: ["meeting-recorder", "granola", "transcripts"],
1530
- stability: StabilityEnum19.Experimental
1687
+ stability: StabilityEnum21.Experimental
1531
1688
  },
1532
1689
  supportedModes: ["byok"],
1533
1690
  capabilities: {
@@ -1602,7 +1759,7 @@ function registerGranolaIntegration(registry) {
1602
1759
  }
1603
1760
 
1604
1761
  // src/integrations/providers/tldv.ts
1605
- import { StabilityEnum as StabilityEnum20 } from "@contractspec/lib.contracts-spec/ownership";
1762
+ import { StabilityEnum as StabilityEnum22 } from "@contractspec/lib.contracts-spec/ownership";
1606
1763
  var tldvIntegrationSpec = defineIntegration({
1607
1764
  meta: {
1608
1765
  key: "meeting-recorder.tldv",
@@ -1613,7 +1770,7 @@ var tldvIntegrationSpec = defineIntegration({
1613
1770
  domain: "productivity",
1614
1771
  owners: ["platform.integrations"],
1615
1772
  tags: ["meeting-recorder", "tldv", "transcripts"],
1616
- stability: StabilityEnum20.Experimental
1773
+ stability: StabilityEnum22.Experimental
1617
1774
  },
1618
1775
  supportedModes: ["byok"],
1619
1776
  capabilities: {
@@ -1687,7 +1844,7 @@ function registerTldvIntegration(registry) {
1687
1844
  }
1688
1845
 
1689
1846
  // src/integrations/providers/fireflies.ts
1690
- import { StabilityEnum as StabilityEnum21 } from "@contractspec/lib.contracts-spec/ownership";
1847
+ import { StabilityEnum as StabilityEnum23 } from "@contractspec/lib.contracts-spec/ownership";
1691
1848
  var firefliesIntegrationSpec = defineIntegration({
1692
1849
  meta: {
1693
1850
  key: "meeting-recorder.fireflies",
@@ -1698,7 +1855,7 @@ var firefliesIntegrationSpec = defineIntegration({
1698
1855
  domain: "productivity",
1699
1856
  owners: ["platform.integrations"],
1700
1857
  tags: ["meeting-recorder", "fireflies", "transcripts"],
1701
- stability: StabilityEnum21.Experimental
1858
+ stability: StabilityEnum23.Experimental
1702
1859
  },
1703
1860
  supportedModes: ["byok"],
1704
1861
  capabilities: {
@@ -1772,7 +1929,7 @@ function registerFirefliesIntegration(registry) {
1772
1929
  }
1773
1930
 
1774
1931
  // src/integrations/providers/fathom.ts
1775
- import { StabilityEnum as StabilityEnum22 } from "@contractspec/lib.contracts-spec/ownership";
1932
+ import { StabilityEnum as StabilityEnum24 } from "@contractspec/lib.contracts-spec/ownership";
1776
1933
  var fathomIntegrationSpec = defineIntegration({
1777
1934
  meta: {
1778
1935
  key: "meeting-recorder.fathom",
@@ -1783,7 +1940,7 @@ var fathomIntegrationSpec = defineIntegration({
1783
1940
  domain: "productivity",
1784
1941
  owners: ["platform.integrations"],
1785
1942
  tags: ["meeting-recorder", "fathom", "transcripts"],
1786
- stability: StabilityEnum22.Experimental
1943
+ stability: StabilityEnum24.Experimental
1787
1944
  },
1788
1945
  supportedModes: ["byok"],
1789
1946
  capabilities: {
@@ -1901,6 +2058,8 @@ function createDefaultIntegrationSpecRegistry() {
1901
2058
  registerTldvIntegration(registry);
1902
2059
  registerFirefliesIntegration(registry);
1903
2060
  registerFathomIntegration(registry);
2061
+ registerDeepgramIntegration(registry);
2062
+ registerOpenaiRealtimeIntegration(registry);
1904
2063
  return registry;
1905
2064
  }
1906
2065
  export {