@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/dist/index.js
CHANGED
|
@@ -15,8 +15,166 @@ function makeIntegrationSpecKey(meta) {
|
|
|
15
15
|
return integrationKey(meta);
|
|
16
16
|
}
|
|
17
17
|
var defineIntegration = (spec) => spec;
|
|
18
|
-
// src/integrations/providers/
|
|
18
|
+
// src/integrations/providers/image.ts
|
|
19
|
+
var IMAGE_PRESETS = {
|
|
20
|
+
ogImage: { width: 1200, height: 630 },
|
|
21
|
+
twitterCard: { width: 1200, height: 675 },
|
|
22
|
+
instagramSquare: { width: 1080, height: 1080 },
|
|
23
|
+
instagramStory: { width: 1080, height: 1920 },
|
|
24
|
+
blogHero: { width: 1920, height: 1080 },
|
|
25
|
+
thumbnail: { width: 640, height: 360 },
|
|
26
|
+
favicon: { width: 512, height: 512 },
|
|
27
|
+
emailHeader: { width: 600, height: 200 },
|
|
28
|
+
illustration: { width: 1024, height: 1024 }
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
// src/integrations/providers/fal-image.ts
|
|
19
32
|
import { StabilityEnum } from "@contractspec/lib.contracts-spec/ownership";
|
|
33
|
+
var falImageIntegrationSpec = defineIntegration({
|
|
34
|
+
meta: {
|
|
35
|
+
key: "ai-image.fal",
|
|
36
|
+
version: "1.0.0",
|
|
37
|
+
category: "ai-image",
|
|
38
|
+
title: "Fal Image Generation",
|
|
39
|
+
description: "Fal integration for AI image generation using Flux and Stable Diffusion models.",
|
|
40
|
+
domain: "ai",
|
|
41
|
+
owners: ["platform.ai"],
|
|
42
|
+
tags: ["image", "generation", "flux", "stable-diffusion"],
|
|
43
|
+
stability: StabilityEnum.Experimental
|
|
44
|
+
},
|
|
45
|
+
supportedModes: ["byok"],
|
|
46
|
+
capabilities: {
|
|
47
|
+
provides: [{ key: "ai.image.generation", version: "1.0.0" }]
|
|
48
|
+
},
|
|
49
|
+
configSchema: {
|
|
50
|
+
schema: {
|
|
51
|
+
type: "object",
|
|
52
|
+
properties: {
|
|
53
|
+
modelId: {
|
|
54
|
+
type: "string",
|
|
55
|
+
description: "Fal model endpoint (e.g. fal-ai/flux/dev)."
|
|
56
|
+
},
|
|
57
|
+
defaultFormat: {
|
|
58
|
+
type: "string",
|
|
59
|
+
enum: ["png", "jpg", "webp"]
|
|
60
|
+
},
|
|
61
|
+
defaultGuidanceScale: {
|
|
62
|
+
type: "number",
|
|
63
|
+
minimum: 1,
|
|
64
|
+
maximum: 20
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
example: {
|
|
69
|
+
modelId: "fal-ai/flux/dev",
|
|
70
|
+
defaultFormat: "png",
|
|
71
|
+
defaultGuidanceScale: 7.5
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
secretSchema: {
|
|
75
|
+
schema: {
|
|
76
|
+
type: "object",
|
|
77
|
+
required: ["apiKey"],
|
|
78
|
+
properties: {
|
|
79
|
+
apiKey: {
|
|
80
|
+
type: "string",
|
|
81
|
+
description: "Fal API key (FAL_KEY)."
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
example: {
|
|
86
|
+
apiKey: "key-id:key-secret"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
healthCheck: {
|
|
90
|
+
method: "custom",
|
|
91
|
+
timeoutMs: 7000
|
|
92
|
+
},
|
|
93
|
+
docsUrl: "https://fal.ai/models",
|
|
94
|
+
byokSetup: {
|
|
95
|
+
setupInstructions: "Create a Fal API key and ensure image generation model access is enabled."
|
|
96
|
+
}
|
|
97
|
+
});
|
|
98
|
+
function registerFalImageIntegration(registry) {
|
|
99
|
+
return registry.register(falImageIntegrationSpec);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// src/integrations/providers/openai-image.ts
|
|
103
|
+
import { StabilityEnum as StabilityEnum2 } from "@contractspec/lib.contracts-spec/ownership";
|
|
104
|
+
var openaiImageIntegrationSpec = defineIntegration({
|
|
105
|
+
meta: {
|
|
106
|
+
key: "ai-image.openai",
|
|
107
|
+
version: "1.0.0",
|
|
108
|
+
category: "ai-image",
|
|
109
|
+
title: "OpenAI Image Generation",
|
|
110
|
+
description: "OpenAI integration for AI image generation using DALL-E and gpt-image models.",
|
|
111
|
+
domain: "ai",
|
|
112
|
+
owners: ["platform.ai"],
|
|
113
|
+
tags: ["image", "generation", "dall-e", "gpt-image"],
|
|
114
|
+
stability: StabilityEnum2.Experimental
|
|
115
|
+
},
|
|
116
|
+
supportedModes: ["managed", "byok"],
|
|
117
|
+
capabilities: {
|
|
118
|
+
provides: [{ key: "ai.image.generation", version: "1.0.0" }]
|
|
119
|
+
},
|
|
120
|
+
configSchema: {
|
|
121
|
+
schema: {
|
|
122
|
+
type: "object",
|
|
123
|
+
properties: {
|
|
124
|
+
model: {
|
|
125
|
+
type: "string",
|
|
126
|
+
description: "OpenAI image model identifier (e.g. dall-e-3, gpt-image-1)."
|
|
127
|
+
},
|
|
128
|
+
defaultSize: {
|
|
129
|
+
type: "string",
|
|
130
|
+
enum: ["1024x1024", "1024x1792", "1792x1024"]
|
|
131
|
+
},
|
|
132
|
+
defaultQuality: {
|
|
133
|
+
type: "string",
|
|
134
|
+
enum: ["standard", "hd"]
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
example: {
|
|
139
|
+
model: "dall-e-3",
|
|
140
|
+
defaultSize: "1024x1024",
|
|
141
|
+
defaultQuality: "standard"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
secretSchema: {
|
|
145
|
+
schema: {
|
|
146
|
+
type: "object",
|
|
147
|
+
required: ["apiKey"],
|
|
148
|
+
properties: {
|
|
149
|
+
apiKey: {
|
|
150
|
+
type: "string",
|
|
151
|
+
description: "OpenAI API key with image generation permissions."
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
example: {
|
|
156
|
+
apiKey: "sk-***"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
healthCheck: {
|
|
160
|
+
method: "custom",
|
|
161
|
+
timeoutMs: 5000
|
|
162
|
+
},
|
|
163
|
+
docsUrl: "https://platform.openai.com/docs/guides/images",
|
|
164
|
+
constraints: {
|
|
165
|
+
rateLimit: {
|
|
166
|
+
rpm: 50
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
byokSetup: {
|
|
170
|
+
setupInstructions: "Create an OpenAI API key with image generation access enabled."
|
|
171
|
+
}
|
|
172
|
+
});
|
|
173
|
+
function registerOpenaiImageIntegration(registry) {
|
|
174
|
+
return registry.register(openaiImageIntegrationSpec);
|
|
175
|
+
}
|
|
176
|
+
// src/integrations/providers/stripe.ts
|
|
177
|
+
import { StabilityEnum as StabilityEnum3 } from "@contractspec/lib.contracts-spec/ownership";
|
|
20
178
|
var stripeIntegrationSpec = defineIntegration({
|
|
21
179
|
meta: {
|
|
22
180
|
key: "payments.stripe",
|
|
@@ -27,7 +185,7 @@ var stripeIntegrationSpec = defineIntegration({
|
|
|
27
185
|
domain: "payments",
|
|
28
186
|
owners: ["platform.payments"],
|
|
29
187
|
tags: ["payments", "psp"],
|
|
30
|
-
stability:
|
|
188
|
+
stability: StabilityEnum3.Stable
|
|
31
189
|
},
|
|
32
190
|
supportedModes: ["managed", "byok"],
|
|
33
191
|
capabilities: {
|
|
@@ -100,7 +258,7 @@ function registerStripeIntegration(registry) {
|
|
|
100
258
|
}
|
|
101
259
|
|
|
102
260
|
// src/integrations/providers/postmark.ts
|
|
103
|
-
import { StabilityEnum as
|
|
261
|
+
import { StabilityEnum as StabilityEnum4 } from "@contractspec/lib.contracts-spec/ownership";
|
|
104
262
|
var postmarkIntegrationSpec = defineIntegration({
|
|
105
263
|
meta: {
|
|
106
264
|
key: "email.postmark",
|
|
@@ -111,7 +269,7 @@ var postmarkIntegrationSpec = defineIntegration({
|
|
|
111
269
|
domain: "communications",
|
|
112
270
|
owners: ["platform.messaging"],
|
|
113
271
|
tags: ["email", "transactional"],
|
|
114
|
-
stability:
|
|
272
|
+
stability: StabilityEnum4.Stable
|
|
115
273
|
},
|
|
116
274
|
supportedModes: ["managed", "byok"],
|
|
117
275
|
capabilities: {
|
|
@@ -177,7 +335,7 @@ function registerPostmarkIntegration(registry) {
|
|
|
177
335
|
}
|
|
178
336
|
|
|
179
337
|
// src/integrations/providers/qdrant.ts
|
|
180
|
-
import { StabilityEnum as
|
|
338
|
+
import { StabilityEnum as StabilityEnum5 } from "@contractspec/lib.contracts-spec/ownership";
|
|
181
339
|
var qdrantIntegrationSpec = defineIntegration({
|
|
182
340
|
meta: {
|
|
183
341
|
key: "vectordb.qdrant",
|
|
@@ -188,7 +346,7 @@ var qdrantIntegrationSpec = defineIntegration({
|
|
|
188
346
|
domain: "ai",
|
|
189
347
|
owners: ["platform.ai"],
|
|
190
348
|
tags: ["vector-db", "search"],
|
|
191
|
-
stability:
|
|
349
|
+
stability: StabilityEnum5.Experimental
|
|
192
350
|
},
|
|
193
351
|
supportedModes: ["managed", "byok"],
|
|
194
352
|
capabilities: {
|
|
@@ -257,7 +415,7 @@ function registerQdrantIntegration(registry) {
|
|
|
257
415
|
}
|
|
258
416
|
|
|
259
417
|
// src/integrations/providers/supabase-vector.ts
|
|
260
|
-
import { StabilityEnum as
|
|
418
|
+
import { StabilityEnum as StabilityEnum6 } from "@contractspec/lib.contracts-spec/ownership";
|
|
261
419
|
var supabaseVectorIntegrationSpec = defineIntegration({
|
|
262
420
|
meta: {
|
|
263
421
|
key: "vectordb.supabase",
|
|
@@ -268,7 +426,7 @@ var supabaseVectorIntegrationSpec = defineIntegration({
|
|
|
268
426
|
domain: "ai",
|
|
269
427
|
owners: ["platform.ai"],
|
|
270
428
|
tags: ["vector-db", "supabase", "pgvector"],
|
|
271
|
-
stability:
|
|
429
|
+
stability: StabilityEnum6.Beta
|
|
272
430
|
},
|
|
273
431
|
supportedModes: ["managed", "byok"],
|
|
274
432
|
capabilities: {
|
|
@@ -343,7 +501,7 @@ function registerSupabaseVectorIntegration(registry) {
|
|
|
343
501
|
}
|
|
344
502
|
|
|
345
503
|
// src/integrations/providers/supabase-postgres.ts
|
|
346
|
-
import { StabilityEnum as
|
|
504
|
+
import { StabilityEnum as StabilityEnum7 } from "@contractspec/lib.contracts-spec/ownership";
|
|
347
505
|
var supabasePostgresIntegrationSpec = defineIntegration({
|
|
348
506
|
meta: {
|
|
349
507
|
key: "database.supabase",
|
|
@@ -354,7 +512,7 @@ var supabasePostgresIntegrationSpec = defineIntegration({
|
|
|
354
512
|
domain: "infrastructure",
|
|
355
513
|
owners: ["platform.infrastructure"],
|
|
356
514
|
tags: ["database", "postgres", "supabase"],
|
|
357
|
-
stability:
|
|
515
|
+
stability: StabilityEnum7.Beta
|
|
358
516
|
},
|
|
359
517
|
supportedModes: ["managed", "byok"],
|
|
360
518
|
capabilities: {
|
|
@@ -409,7 +567,7 @@ function registerSupabasePostgresIntegration(registry) {
|
|
|
409
567
|
}
|
|
410
568
|
|
|
411
569
|
// src/integrations/providers/mistral.ts
|
|
412
|
-
import { StabilityEnum as
|
|
570
|
+
import { StabilityEnum as StabilityEnum8 } from "@contractspec/lib.contracts-spec/ownership";
|
|
413
571
|
var mistralIntegrationSpec = defineIntegration({
|
|
414
572
|
meta: {
|
|
415
573
|
key: "ai-llm.mistral",
|
|
@@ -420,7 +578,7 @@ var mistralIntegrationSpec = defineIntegration({
|
|
|
420
578
|
domain: "ai",
|
|
421
579
|
owners: ["platform.ai"],
|
|
422
580
|
tags: ["ai", "llm", "embeddings"],
|
|
423
|
-
stability:
|
|
581
|
+
stability: StabilityEnum8.Experimental
|
|
424
582
|
},
|
|
425
583
|
supportedModes: ["managed", "byok"],
|
|
426
584
|
capabilities: {
|
|
@@ -482,22 +640,25 @@ function registerMistralIntegration(registry) {
|
|
|
482
640
|
}
|
|
483
641
|
|
|
484
642
|
// src/integrations/providers/elevenlabs.ts
|
|
485
|
-
import { StabilityEnum as
|
|
643
|
+
import { StabilityEnum as StabilityEnum9 } from "@contractspec/lib.contracts-spec/ownership";
|
|
486
644
|
var elevenLabsIntegrationSpec = defineIntegration({
|
|
487
645
|
meta: {
|
|
488
646
|
key: "ai-voice.elevenlabs",
|
|
489
647
|
version: "1.0.0",
|
|
490
|
-
category: "ai-voice",
|
|
648
|
+
category: "ai-voice-tts",
|
|
491
649
|
title: "ElevenLabs Text-to-Speech",
|
|
492
650
|
description: "ElevenLabs integration for neural voice synthesis and voice catalog access.",
|
|
493
651
|
domain: "ai",
|
|
494
652
|
owners: ["platform.ai"],
|
|
495
|
-
tags: ["voice", "tts"],
|
|
496
|
-
stability:
|
|
653
|
+
tags: ["voice", "tts", "stt"],
|
|
654
|
+
stability: StabilityEnum9.Beta
|
|
497
655
|
},
|
|
498
656
|
supportedModes: ["managed", "byok"],
|
|
499
657
|
capabilities: {
|
|
500
|
-
provides: [
|
|
658
|
+
provides: [
|
|
659
|
+
{ key: "ai.voice.tts", version: "1.0.0" },
|
|
660
|
+
{ key: "ai.voice.stt", version: "1.0.0" }
|
|
661
|
+
]
|
|
501
662
|
},
|
|
502
663
|
configSchema: {
|
|
503
664
|
schema: {
|
|
@@ -547,22 +708,22 @@ function registerElevenLabsIntegration(registry) {
|
|
|
547
708
|
}
|
|
548
709
|
|
|
549
710
|
// src/integrations/providers/gradium.ts
|
|
550
|
-
import { StabilityEnum as
|
|
711
|
+
import { StabilityEnum as StabilityEnum10 } from "@contractspec/lib.contracts-spec/ownership";
|
|
551
712
|
var gradiumIntegrationSpec = defineIntegration({
|
|
552
713
|
meta: {
|
|
553
714
|
key: "ai-voice.gradium",
|
|
554
715
|
version: "1.0.0",
|
|
555
|
-
category: "ai-voice",
|
|
716
|
+
category: "ai-voice-tts",
|
|
556
717
|
title: "Gradium Text-to-Speech",
|
|
557
718
|
description: "Gradium integration for low-latency voice synthesis and voice catalog access.",
|
|
558
719
|
domain: "ai",
|
|
559
720
|
owners: ["platform.ai"],
|
|
560
721
|
tags: ["voice", "tts", "realtime"],
|
|
561
|
-
stability:
|
|
722
|
+
stability: StabilityEnum10.Experimental
|
|
562
723
|
},
|
|
563
724
|
supportedModes: ["byok"],
|
|
564
725
|
capabilities: {
|
|
565
|
-
provides: [{ key: "ai.voice.
|
|
726
|
+
provides: [{ key: "ai.voice.tts", version: "1.0.0" }]
|
|
566
727
|
},
|
|
567
728
|
configSchema: {
|
|
568
729
|
schema: {
|
|
@@ -636,22 +797,22 @@ function registerGradiumIntegration(registry) {
|
|
|
636
797
|
}
|
|
637
798
|
|
|
638
799
|
// src/integrations/providers/fal.ts
|
|
639
|
-
import { StabilityEnum as
|
|
800
|
+
import { StabilityEnum as StabilityEnum11 } from "@contractspec/lib.contracts-spec/ownership";
|
|
640
801
|
var falIntegrationSpec = defineIntegration({
|
|
641
802
|
meta: {
|
|
642
803
|
key: "ai-voice.fal",
|
|
643
804
|
version: "1.0.0",
|
|
644
|
-
category: "ai-voice",
|
|
805
|
+
category: "ai-voice-tts",
|
|
645
806
|
title: "Fal Chatterbox Text-to-Speech",
|
|
646
807
|
description: "Fal integration for voice synthesis using Chatterbox text-to-speech models.",
|
|
647
808
|
domain: "ai",
|
|
648
809
|
owners: ["platform.ai"],
|
|
649
810
|
tags: ["voice", "tts", "chatterbox"],
|
|
650
|
-
stability:
|
|
811
|
+
stability: StabilityEnum11.Experimental
|
|
651
812
|
},
|
|
652
813
|
supportedModes: ["byok"],
|
|
653
814
|
capabilities: {
|
|
654
|
-
provides: [{ key: "ai.voice.
|
|
815
|
+
provides: [{ key: "ai.voice.tts", version: "1.0.0" }]
|
|
655
816
|
},
|
|
656
817
|
configSchema: {
|
|
657
818
|
schema: {
|
|
@@ -726,8 +887,162 @@ function registerFalIntegration(registry) {
|
|
|
726
887
|
return registry.register(falIntegrationSpec);
|
|
727
888
|
}
|
|
728
889
|
|
|
890
|
+
// src/integrations/providers/deepgram.ts
|
|
891
|
+
import { StabilityEnum as StabilityEnum12 } from "@contractspec/lib.contracts-spec/ownership";
|
|
892
|
+
var deepgramIntegrationSpec = defineIntegration({
|
|
893
|
+
meta: {
|
|
894
|
+
key: "ai-voice-stt.deepgram",
|
|
895
|
+
version: "1.0.0",
|
|
896
|
+
category: "ai-voice-stt",
|
|
897
|
+
title: "Deepgram Speech-to-Text",
|
|
898
|
+
description: "Deepgram integration for real-time and batch speech-to-text transcription with speaker diarization.",
|
|
899
|
+
domain: "ai",
|
|
900
|
+
owners: ["platform.ai"],
|
|
901
|
+
tags: ["voice", "stt", "transcription", "diarization"],
|
|
902
|
+
stability: StabilityEnum12.Experimental
|
|
903
|
+
},
|
|
904
|
+
supportedModes: ["byok"],
|
|
905
|
+
capabilities: {
|
|
906
|
+
provides: [
|
|
907
|
+
{ key: "ai.voice.stt", version: "1.0.0" },
|
|
908
|
+
{ key: "ai.voice.conversational", version: "1.0.0" }
|
|
909
|
+
]
|
|
910
|
+
},
|
|
911
|
+
configSchema: {
|
|
912
|
+
schema: {
|
|
913
|
+
type: "object",
|
|
914
|
+
properties: {
|
|
915
|
+
model: {
|
|
916
|
+
type: "string",
|
|
917
|
+
description: "Deepgram model to use (e.g. nova-3, nova-2, enhanced)."
|
|
918
|
+
},
|
|
919
|
+
language: {
|
|
920
|
+
type: "string",
|
|
921
|
+
description: "Default language code for transcription (e.g. en-US)."
|
|
922
|
+
},
|
|
923
|
+
enableDiarization: {
|
|
924
|
+
type: "boolean",
|
|
925
|
+
description: "Enable speaker diarization by default."
|
|
926
|
+
},
|
|
927
|
+
enableSmartFormat: {
|
|
928
|
+
type: "boolean",
|
|
929
|
+
description: "Enable smart formatting (punctuation, capitalization)."
|
|
930
|
+
}
|
|
931
|
+
}
|
|
932
|
+
},
|
|
933
|
+
example: {
|
|
934
|
+
model: "nova-3",
|
|
935
|
+
language: "en-US",
|
|
936
|
+
enableDiarization: true,
|
|
937
|
+
enableSmartFormat: true
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
secretSchema: {
|
|
941
|
+
schema: {
|
|
942
|
+
type: "object",
|
|
943
|
+
required: ["apiKey"],
|
|
944
|
+
properties: {
|
|
945
|
+
apiKey: {
|
|
946
|
+
type: "string",
|
|
947
|
+
description: "Deepgram API key with transcription permissions."
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
example: {
|
|
952
|
+
apiKey: "dg_***"
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
healthCheck: {
|
|
956
|
+
method: "custom",
|
|
957
|
+
timeoutMs: 5000
|
|
958
|
+
},
|
|
959
|
+
docsUrl: "https://developers.deepgram.com/docs",
|
|
960
|
+
byokSetup: {
|
|
961
|
+
setupInstructions: "Create a Deepgram API key with speech-to-text permissions and store it in your secret provider."
|
|
962
|
+
}
|
|
963
|
+
});
|
|
964
|
+
function registerDeepgramIntegration(registry) {
|
|
965
|
+
return registry.register(deepgramIntegrationSpec);
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
// src/integrations/providers/openai-realtime.ts
|
|
969
|
+
import { StabilityEnum as StabilityEnum13 } from "@contractspec/lib.contracts-spec/ownership";
|
|
970
|
+
var openaiRealtimeIntegrationSpec = defineIntegration({
|
|
971
|
+
meta: {
|
|
972
|
+
key: "ai-voice-conv.openai",
|
|
973
|
+
version: "1.0.0",
|
|
974
|
+
category: "ai-voice-conversational",
|
|
975
|
+
title: "OpenAI Realtime Voice",
|
|
976
|
+
description: "OpenAI Realtime API integration for bidirectional conversational voice with GPT models.",
|
|
977
|
+
domain: "ai",
|
|
978
|
+
owners: ["platform.ai"],
|
|
979
|
+
tags: ["voice", "conversational", "realtime", "openai"],
|
|
980
|
+
stability: StabilityEnum13.Experimental
|
|
981
|
+
},
|
|
982
|
+
supportedModes: ["byok"],
|
|
983
|
+
capabilities: {
|
|
984
|
+
provides: [{ key: "ai.voice.conversational", version: "1.0.0" }]
|
|
985
|
+
},
|
|
986
|
+
configSchema: {
|
|
987
|
+
schema: {
|
|
988
|
+
type: "object",
|
|
989
|
+
properties: {
|
|
990
|
+
model: {
|
|
991
|
+
type: "string",
|
|
992
|
+
description: "OpenAI model for realtime conversations (e.g. gpt-4o-realtime-preview)."
|
|
993
|
+
},
|
|
994
|
+
defaultVoice: {
|
|
995
|
+
type: "string",
|
|
996
|
+
description: "Default voice for agent responses (e.g. alloy, echo, shimmer)."
|
|
997
|
+
},
|
|
998
|
+
turnDetection: {
|
|
999
|
+
type: "string",
|
|
1000
|
+
enum: ["server_vad", "push_to_talk"],
|
|
1001
|
+
description: "Turn detection strategy."
|
|
1002
|
+
},
|
|
1003
|
+
maxSessionDurationSeconds: {
|
|
1004
|
+
type: "number",
|
|
1005
|
+
description: "Maximum session duration in seconds."
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
example: {
|
|
1010
|
+
model: "gpt-4o-realtime-preview",
|
|
1011
|
+
defaultVoice: "alloy",
|
|
1012
|
+
turnDetection: "server_vad",
|
|
1013
|
+
maxSessionDurationSeconds: 600
|
|
1014
|
+
}
|
|
1015
|
+
},
|
|
1016
|
+
secretSchema: {
|
|
1017
|
+
schema: {
|
|
1018
|
+
type: "object",
|
|
1019
|
+
required: ["apiKey"],
|
|
1020
|
+
properties: {
|
|
1021
|
+
apiKey: {
|
|
1022
|
+
type: "string",
|
|
1023
|
+
description: "OpenAI API key with realtime API access."
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
1027
|
+
example: {
|
|
1028
|
+
apiKey: "sk-***"
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
healthCheck: {
|
|
1032
|
+
method: "custom",
|
|
1033
|
+
timeoutMs: 5000
|
|
1034
|
+
},
|
|
1035
|
+
docsUrl: "https://platform.openai.com/docs/guides/realtime",
|
|
1036
|
+
byokSetup: {
|
|
1037
|
+
setupInstructions: "Create an OpenAI API key with Realtime API access enabled and store it in your secret provider."
|
|
1038
|
+
}
|
|
1039
|
+
});
|
|
1040
|
+
function registerOpenaiRealtimeIntegration(registry) {
|
|
1041
|
+
return registry.register(openaiRealtimeIntegrationSpec);
|
|
1042
|
+
}
|
|
1043
|
+
|
|
729
1044
|
// src/integrations/providers/gmail.ts
|
|
730
|
-
import { StabilityEnum as
|
|
1045
|
+
import { StabilityEnum as StabilityEnum14 } from "@contractspec/lib.contracts-spec/ownership";
|
|
731
1046
|
var gmailIntegrationSpec = defineIntegration({
|
|
732
1047
|
meta: {
|
|
733
1048
|
key: "email.gmail",
|
|
@@ -738,7 +1053,7 @@ var gmailIntegrationSpec = defineIntegration({
|
|
|
738
1053
|
domain: "communications",
|
|
739
1054
|
owners: ["platform.messaging"],
|
|
740
1055
|
tags: ["email", "gmail"],
|
|
741
|
-
stability:
|
|
1056
|
+
stability: StabilityEnum14.Beta
|
|
742
1057
|
},
|
|
743
1058
|
supportedModes: ["managed", "byok"],
|
|
744
1059
|
capabilities: {
|
|
@@ -815,7 +1130,7 @@ function registerGmailIntegration(registry) {
|
|
|
815
1130
|
}
|
|
816
1131
|
|
|
817
1132
|
// src/integrations/providers/google-calendar.ts
|
|
818
|
-
import { StabilityEnum as
|
|
1133
|
+
import { StabilityEnum as StabilityEnum15 } from "@contractspec/lib.contracts-spec/ownership";
|
|
819
1134
|
var googleCalendarIntegrationSpec = defineIntegration({
|
|
820
1135
|
meta: {
|
|
821
1136
|
key: "calendar.google",
|
|
@@ -826,7 +1141,7 @@ var googleCalendarIntegrationSpec = defineIntegration({
|
|
|
826
1141
|
domain: "productivity",
|
|
827
1142
|
owners: ["platform.messaging"],
|
|
828
1143
|
tags: ["calendar", "google"],
|
|
829
|
-
stability:
|
|
1144
|
+
stability: StabilityEnum15.Beta
|
|
830
1145
|
},
|
|
831
1146
|
supportedModes: ["managed", "byok"],
|
|
832
1147
|
capabilities: {
|
|
@@ -886,7 +1201,7 @@ function registerGoogleCalendarIntegration(registry) {
|
|
|
886
1201
|
}
|
|
887
1202
|
|
|
888
1203
|
// src/integrations/providers/twilio-sms.ts
|
|
889
|
-
import { StabilityEnum as
|
|
1204
|
+
import { StabilityEnum as StabilityEnum16 } from "@contractspec/lib.contracts-spec/ownership";
|
|
890
1205
|
var twilioSmsIntegrationSpec = defineIntegration({
|
|
891
1206
|
meta: {
|
|
892
1207
|
key: "sms.twilio",
|
|
@@ -897,7 +1212,7 @@ var twilioSmsIntegrationSpec = defineIntegration({
|
|
|
897
1212
|
domain: "communications",
|
|
898
1213
|
owners: ["platform.messaging"],
|
|
899
1214
|
tags: ["sms", "messaging"],
|
|
900
|
-
stability:
|
|
1215
|
+
stability: StabilityEnum16.Stable
|
|
901
1216
|
},
|
|
902
1217
|
supportedModes: ["managed", "byok"],
|
|
903
1218
|
capabilities: {
|
|
@@ -956,7 +1271,7 @@ function registerTwilioSmsIntegration(registry) {
|
|
|
956
1271
|
}
|
|
957
1272
|
|
|
958
1273
|
// src/integrations/providers/gcs-storage.ts
|
|
959
|
-
import { StabilityEnum as
|
|
1274
|
+
import { StabilityEnum as StabilityEnum17 } from "@contractspec/lib.contracts-spec/ownership";
|
|
960
1275
|
var gcsStorageIntegrationSpec = defineIntegration({
|
|
961
1276
|
meta: {
|
|
962
1277
|
key: "storage.gcs",
|
|
@@ -967,7 +1282,7 @@ var gcsStorageIntegrationSpec = defineIntegration({
|
|
|
967
1282
|
domain: "infrastructure",
|
|
968
1283
|
owners: ["platform.infrastructure"],
|
|
969
1284
|
tags: ["storage", "gcs", "google-cloud"],
|
|
970
|
-
stability:
|
|
1285
|
+
stability: StabilityEnum17.Beta
|
|
971
1286
|
},
|
|
972
1287
|
supportedModes: ["managed", "byok"],
|
|
973
1288
|
capabilities: {
|
|
@@ -1032,7 +1347,7 @@ function registerGcsStorageIntegration(registry) {
|
|
|
1032
1347
|
}
|
|
1033
1348
|
|
|
1034
1349
|
// src/integrations/providers/powens.ts
|
|
1035
|
-
import { StabilityEnum as
|
|
1350
|
+
import { StabilityEnum as StabilityEnum18 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1036
1351
|
var powensIntegrationSpec = defineIntegration({
|
|
1037
1352
|
meta: {
|
|
1038
1353
|
key: "openbanking.powens",
|
|
@@ -1043,7 +1358,7 @@ var powensIntegrationSpec = defineIntegration({
|
|
|
1043
1358
|
domain: "finance",
|
|
1044
1359
|
owners: ["platform.finance"],
|
|
1045
1360
|
tags: ["open-banking", "powens", "finance"],
|
|
1046
|
-
stability:
|
|
1361
|
+
stability: StabilityEnum18.Experimental
|
|
1047
1362
|
},
|
|
1048
1363
|
supportedModes: ["byok"],
|
|
1049
1364
|
capabilities: {
|
|
@@ -1135,7 +1450,7 @@ function registerPowensIntegration(registry) {
|
|
|
1135
1450
|
}
|
|
1136
1451
|
|
|
1137
1452
|
// src/integrations/providers/posthog.ts
|
|
1138
|
-
import { StabilityEnum as
|
|
1453
|
+
import { StabilityEnum as StabilityEnum19 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1139
1454
|
var posthogIntegrationSpec = defineIntegration({
|
|
1140
1455
|
meta: {
|
|
1141
1456
|
key: "analytics.posthog",
|
|
@@ -1146,7 +1461,7 @@ var posthogIntegrationSpec = defineIntegration({
|
|
|
1146
1461
|
domain: "analytics",
|
|
1147
1462
|
owners: ["@platform.integrations"],
|
|
1148
1463
|
tags: ["analytics", "posthog", "llm", "ai"],
|
|
1149
|
-
stability:
|
|
1464
|
+
stability: StabilityEnum19.Beta
|
|
1150
1465
|
},
|
|
1151
1466
|
supportedModes: ["managed", "byok"],
|
|
1152
1467
|
capabilities: {
|
|
@@ -1220,7 +1535,7 @@ function registerPosthogIntegration(registry) {
|
|
|
1220
1535
|
}
|
|
1221
1536
|
|
|
1222
1537
|
// src/integrations/providers/posthog-llm-telemetry.ts
|
|
1223
|
-
import { StabilityEnum as
|
|
1538
|
+
import { StabilityEnum as StabilityEnum20 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1224
1539
|
var posthogLLMTelemetrySpec = {
|
|
1225
1540
|
meta: {
|
|
1226
1541
|
key: "analytics.posthog.llm",
|
|
@@ -1230,7 +1545,7 @@ var posthogLLMTelemetrySpec = {
|
|
|
1230
1545
|
domain: "analytics",
|
|
1231
1546
|
owners: ["@platform.integrations"],
|
|
1232
1547
|
tags: ["analytics", "posthog", "llm", "ai", "telemetry"],
|
|
1233
|
-
stability:
|
|
1548
|
+
stability: StabilityEnum20.Beta
|
|
1234
1549
|
},
|
|
1235
1550
|
events: [
|
|
1236
1551
|
{
|
|
@@ -1389,7 +1704,7 @@ function redactPostHogLLMTelemetryPayload(payload) {
|
|
|
1389
1704
|
}
|
|
1390
1705
|
|
|
1391
1706
|
// src/integrations/providers/linear.ts
|
|
1392
|
-
import { StabilityEnum as
|
|
1707
|
+
import { StabilityEnum as StabilityEnum21 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1393
1708
|
var linearIntegrationSpec = defineIntegration({
|
|
1394
1709
|
meta: {
|
|
1395
1710
|
key: "project-management.linear",
|
|
@@ -1400,7 +1715,7 @@ var linearIntegrationSpec = defineIntegration({
|
|
|
1400
1715
|
domain: "productivity",
|
|
1401
1716
|
owners: ["@platform.integrations"],
|
|
1402
1717
|
tags: ["project-management", "linear"],
|
|
1403
|
-
stability:
|
|
1718
|
+
stability: StabilityEnum21.Beta
|
|
1404
1719
|
},
|
|
1405
1720
|
supportedModes: ["managed", "byok"],
|
|
1406
1721
|
capabilities: {
|
|
@@ -1475,7 +1790,7 @@ function registerLinearIntegration(registry) {
|
|
|
1475
1790
|
}
|
|
1476
1791
|
|
|
1477
1792
|
// src/integrations/providers/jira.ts
|
|
1478
|
-
import { StabilityEnum as
|
|
1793
|
+
import { StabilityEnum as StabilityEnum22 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1479
1794
|
var jiraIntegrationSpec = defineIntegration({
|
|
1480
1795
|
meta: {
|
|
1481
1796
|
key: "project-management.jira",
|
|
@@ -1486,7 +1801,7 @@ var jiraIntegrationSpec = defineIntegration({
|
|
|
1486
1801
|
domain: "productivity",
|
|
1487
1802
|
owners: ["@platform.integrations"],
|
|
1488
1803
|
tags: ["project-management", "jira"],
|
|
1489
|
-
stability:
|
|
1804
|
+
stability: StabilityEnum22.Beta
|
|
1490
1805
|
},
|
|
1491
1806
|
supportedModes: ["managed", "byok"],
|
|
1492
1807
|
capabilities: {
|
|
@@ -1562,7 +1877,7 @@ function registerJiraIntegration(registry) {
|
|
|
1562
1877
|
}
|
|
1563
1878
|
|
|
1564
1879
|
// src/integrations/providers/notion.ts
|
|
1565
|
-
import { StabilityEnum as
|
|
1880
|
+
import { StabilityEnum as StabilityEnum23 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1566
1881
|
var notionIntegrationSpec = defineIntegration({
|
|
1567
1882
|
meta: {
|
|
1568
1883
|
key: "project-management.notion",
|
|
@@ -1573,7 +1888,7 @@ var notionIntegrationSpec = defineIntegration({
|
|
|
1573
1888
|
domain: "productivity",
|
|
1574
1889
|
owners: ["@platform.integrations"],
|
|
1575
1890
|
tags: ["project-management", "notion"],
|
|
1576
|
-
stability:
|
|
1891
|
+
stability: StabilityEnum23.Beta
|
|
1577
1892
|
},
|
|
1578
1893
|
supportedModes: ["managed", "byok"],
|
|
1579
1894
|
capabilities: {
|
|
@@ -1661,7 +1976,7 @@ var VIDEO_FORMATS = {
|
|
|
1661
1976
|
};
|
|
1662
1977
|
|
|
1663
1978
|
// src/integrations/providers/granola.ts
|
|
1664
|
-
import { StabilityEnum as
|
|
1979
|
+
import { StabilityEnum as StabilityEnum24 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1665
1980
|
var granolaIntegrationSpec = defineIntegration({
|
|
1666
1981
|
meta: {
|
|
1667
1982
|
key: "meeting-recorder.granola",
|
|
@@ -1672,7 +1987,7 @@ var granolaIntegrationSpec = defineIntegration({
|
|
|
1672
1987
|
domain: "productivity",
|
|
1673
1988
|
owners: ["platform.integrations"],
|
|
1674
1989
|
tags: ["meeting-recorder", "granola", "transcripts"],
|
|
1675
|
-
stability:
|
|
1990
|
+
stability: StabilityEnum24.Experimental
|
|
1676
1991
|
},
|
|
1677
1992
|
supportedModes: ["byok"],
|
|
1678
1993
|
capabilities: {
|
|
@@ -1747,7 +2062,7 @@ function registerGranolaIntegration(registry) {
|
|
|
1747
2062
|
}
|
|
1748
2063
|
|
|
1749
2064
|
// src/integrations/providers/tldv.ts
|
|
1750
|
-
import { StabilityEnum as
|
|
2065
|
+
import { StabilityEnum as StabilityEnum25 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1751
2066
|
var tldvIntegrationSpec = defineIntegration({
|
|
1752
2067
|
meta: {
|
|
1753
2068
|
key: "meeting-recorder.tldv",
|
|
@@ -1758,7 +2073,7 @@ var tldvIntegrationSpec = defineIntegration({
|
|
|
1758
2073
|
domain: "productivity",
|
|
1759
2074
|
owners: ["platform.integrations"],
|
|
1760
2075
|
tags: ["meeting-recorder", "tldv", "transcripts"],
|
|
1761
|
-
stability:
|
|
2076
|
+
stability: StabilityEnum25.Experimental
|
|
1762
2077
|
},
|
|
1763
2078
|
supportedModes: ["byok"],
|
|
1764
2079
|
capabilities: {
|
|
@@ -1832,7 +2147,7 @@ function registerTldvIntegration(registry) {
|
|
|
1832
2147
|
}
|
|
1833
2148
|
|
|
1834
2149
|
// src/integrations/providers/fireflies.ts
|
|
1835
|
-
import { StabilityEnum as
|
|
2150
|
+
import { StabilityEnum as StabilityEnum26 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1836
2151
|
var firefliesIntegrationSpec = defineIntegration({
|
|
1837
2152
|
meta: {
|
|
1838
2153
|
key: "meeting-recorder.fireflies",
|
|
@@ -1843,7 +2158,7 @@ var firefliesIntegrationSpec = defineIntegration({
|
|
|
1843
2158
|
domain: "productivity",
|
|
1844
2159
|
owners: ["platform.integrations"],
|
|
1845
2160
|
tags: ["meeting-recorder", "fireflies", "transcripts"],
|
|
1846
|
-
stability:
|
|
2161
|
+
stability: StabilityEnum26.Experimental
|
|
1847
2162
|
},
|
|
1848
2163
|
supportedModes: ["byok"],
|
|
1849
2164
|
capabilities: {
|
|
@@ -1917,7 +2232,7 @@ function registerFirefliesIntegration(registry) {
|
|
|
1917
2232
|
}
|
|
1918
2233
|
|
|
1919
2234
|
// src/integrations/providers/fathom.ts
|
|
1920
|
-
import { StabilityEnum as
|
|
2235
|
+
import { StabilityEnum as StabilityEnum27 } from "@contractspec/lib.contracts-spec/ownership";
|
|
1921
2236
|
var fathomIntegrationSpec = defineIntegration({
|
|
1922
2237
|
meta: {
|
|
1923
2238
|
key: "meeting-recorder.fathom",
|
|
@@ -1928,7 +2243,7 @@ var fathomIntegrationSpec = defineIntegration({
|
|
|
1928
2243
|
domain: "productivity",
|
|
1929
2244
|
owners: ["platform.integrations"],
|
|
1930
2245
|
tags: ["meeting-recorder", "fathom", "transcripts"],
|
|
1931
|
-
stability:
|
|
2246
|
+
stability: StabilityEnum27.Experimental
|
|
1932
2247
|
},
|
|
1933
2248
|
supportedModes: ["byok"],
|
|
1934
2249
|
capabilities: {
|
|
@@ -2045,6 +2360,8 @@ function createDefaultIntegrationSpecRegistry() {
|
|
|
2045
2360
|
registerTldvIntegration(registry);
|
|
2046
2361
|
registerFirefliesIntegration(registry);
|
|
2047
2362
|
registerFathomIntegration(registry);
|
|
2363
|
+
registerDeepgramIntegration(registry);
|
|
2364
|
+
registerOpenaiRealtimeIntegration(registry);
|
|
2048
2365
|
return registry;
|
|
2049
2366
|
}
|
|
2050
2367
|
// src/integrations/openbanking/models.ts
|
|
@@ -3254,13 +3571,13 @@ function extractErrorCode(error) {
|
|
|
3254
3571
|
|
|
3255
3572
|
// src/integrations/integrations.capability.ts
|
|
3256
3573
|
import { defineCapability } from "@contractspec/lib.contracts-spec/capabilities";
|
|
3257
|
-
import { StabilityEnum as
|
|
3574
|
+
import { StabilityEnum as StabilityEnum28 } from "@contractspec/lib.contracts-spec/ownership";
|
|
3258
3575
|
var IntegrationsCapability = defineCapability({
|
|
3259
3576
|
meta: {
|
|
3260
3577
|
key: "integrations",
|
|
3261
3578
|
version: "1.0.0",
|
|
3262
3579
|
kind: "integration",
|
|
3263
|
-
stability:
|
|
3580
|
+
stability: StabilityEnum28.Experimental,
|
|
3264
3581
|
description: "Core integrations capability for third-party connections",
|
|
3265
3582
|
owners: ["@platform.core"],
|
|
3266
3583
|
tags: ["integrations", "platform"]
|
|
@@ -3599,6 +3916,8 @@ export {
|
|
|
3599
3916
|
registerPowensIntegration,
|
|
3600
3917
|
registerPostmarkIntegration,
|
|
3601
3918
|
registerPosthogIntegration,
|
|
3919
|
+
registerOpenaiRealtimeIntegration,
|
|
3920
|
+
registerOpenaiImageIntegration,
|
|
3602
3921
|
registerOpenBankingContracts,
|
|
3603
3922
|
registerNotionIntegration,
|
|
3604
3923
|
registerMistralIntegration,
|
|
@@ -3614,7 +3933,9 @@ export {
|
|
|
3614
3933
|
registerFirefliesIntegration,
|
|
3615
3934
|
registerFathomIntegration,
|
|
3616
3935
|
registerFalIntegration,
|
|
3936
|
+
registerFalImageIntegration,
|
|
3617
3937
|
registerElevenLabsIntegration,
|
|
3938
|
+
registerDeepgramIntegration,
|
|
3618
3939
|
redactPostHogLLMTelemetryPayload,
|
|
3619
3940
|
redactOpenBankingTelemetryPayload,
|
|
3620
3941
|
redactMeetingRecorderTelemetryPayload,
|
|
@@ -3623,6 +3944,8 @@ export {
|
|
|
3623
3944
|
postmarkIntegrationSpec,
|
|
3624
3945
|
posthogLLMTelemetrySpec,
|
|
3625
3946
|
posthogIntegrationSpec,
|
|
3947
|
+
openaiRealtimeIntegrationSpec,
|
|
3948
|
+
openaiImageIntegrationSpec,
|
|
3626
3949
|
notionIntegrationSpec,
|
|
3627
3950
|
mistralIntegrationSpec,
|
|
3628
3951
|
makeIntegrationSpecKey,
|
|
@@ -3637,9 +3960,11 @@ export {
|
|
|
3637
3960
|
firefliesIntegrationSpec,
|
|
3638
3961
|
fathomIntegrationSpec,
|
|
3639
3962
|
falIntegrationSpec,
|
|
3963
|
+
falImageIntegrationSpec,
|
|
3640
3964
|
ensurePrimaryOpenBankingIntegration,
|
|
3641
3965
|
elevenLabsIntegrationSpec,
|
|
3642
3966
|
defineIntegration,
|
|
3967
|
+
deepgramIntegrationSpec,
|
|
3643
3968
|
createDefaultIntegrationSpecRegistry,
|
|
3644
3969
|
assertPrimaryOpenBankingReady,
|
|
3645
3970
|
VIDEO_FORMATS,
|
|
@@ -3676,6 +4001,7 @@ export {
|
|
|
3676
4001
|
IntegrationsCapability,
|
|
3677
4002
|
IntegrationSpecRegistry,
|
|
3678
4003
|
IntegrationHealthService,
|
|
4004
|
+
IMAGE_PRESETS,
|
|
3679
4005
|
DeleteIntegrationConnection,
|
|
3680
4006
|
CreateIntegrationConnection,
|
|
3681
4007
|
BankTransactionRecord,
|