@apteva/integrations 0.3.48 → 0.3.60
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/http-executor.d.ts +1 -0
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +128 -5
- package/dist/http-executor.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/deepgram.json +347 -0
- package/src/apps/disify.json +47 -0
- package/src/apps/gigs-marketplace.json +34 -245
- package/src/apps/gmail.json +478 -1
- package/src/apps/google-ads.json +1 -1
- package/src/apps/google-docs.json +382 -78
- package/src/apps/google-drive.json +333 -28
- package/src/apps/google-sheets.json +1 -1
- package/src/apps/heygen.json +713 -516
- package/src/apps/omnikit-intelligence.json +22 -7
- package/src/apps/omnikit-sites.json +246 -0
- package/src/apps/socialcast.json +1 -1
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
"name": "generate_image",
|
|
140
|
-
"description": "Generate or edit images with AI.
|
|
140
|
+
"description": "Generate or edit images with AI. Provider is auto-detected from the model name (gemini-* → google, dall-e-*/gpt-image-* → openai), so you can just pass a model. For image editing or reference images, use a Gemini model (e.g. gemini-3-pro-image-preview) and pass the 'images' array.",
|
|
141
141
|
"method": "POST",
|
|
142
142
|
"path": "/ai/generate/image",
|
|
143
143
|
"input_schema": {
|
|
@@ -153,15 +153,32 @@
|
|
|
153
153
|
"openai",
|
|
154
154
|
"google"
|
|
155
155
|
],
|
|
156
|
-
"description": "
|
|
156
|
+
"description": "Optional. AI provider. Auto-detected from the model name if omitted (gemini-* → google, dall-e-*/gpt-image-* → openai). Defaults to openai if neither provider nor model is set."
|
|
157
157
|
},
|
|
158
158
|
"model": {
|
|
159
159
|
"type": "string",
|
|
160
|
-
"description": "
|
|
160
|
+
"description": "Optional model ID. Options: 'dall-e-3' (OpenAI), 'gpt-image-1' (OpenAI), 'gemini-2.5-flash-image' (Google, fast default), 'gemini-3-pro-image-preview' (Google, supports reference images + editing, best quality). If omitted, a default model for the provider is auto-selected from the catalog."
|
|
161
161
|
},
|
|
162
162
|
"images": {
|
|
163
163
|
"type": "array",
|
|
164
|
-
"description": "Reference images for generation OR images to edit. Use for: (1) character/style consistency - pass reference photo to maintain appearance, (2) image editing - pass image to modify based on prompt.
|
|
164
|
+
"description": "Reference images for generation OR images to edit. Use for: (1) character/style consistency - pass a reference photo to maintain appearance, (2) image editing - pass an image to modify based on prompt. Requires a Gemini model (e.g. gemini-3-pro-image-preview). Google only — will error on OpenAI providers.",
|
|
165
|
+
"items": {
|
|
166
|
+
"type": "object",
|
|
167
|
+
"properties": {
|
|
168
|
+
"url": {
|
|
169
|
+
"type": "string",
|
|
170
|
+
"description": "HTTPS URL of the image (will be fetched and base64-encoded server-side). Supported types: image/png, image/jpeg, image/webp, image/gif."
|
|
171
|
+
},
|
|
172
|
+
"data": {
|
|
173
|
+
"type": "string",
|
|
174
|
+
"description": "Base64-encoded image data. Alternative to url — provide one or the other."
|
|
175
|
+
},
|
|
176
|
+
"mimeType": {
|
|
177
|
+
"type": "string",
|
|
178
|
+
"description": "MIME type when using 'data' (e.g. image/png, image/jpeg). Defaults to image/png."
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
165
182
|
},
|
|
166
183
|
"size": {
|
|
167
184
|
"type": "string",
|
|
@@ -208,9 +225,7 @@
|
|
|
208
225
|
}
|
|
209
226
|
},
|
|
210
227
|
"required": [
|
|
211
|
-
"prompt"
|
|
212
|
-
"provider",
|
|
213
|
-
"model"
|
|
228
|
+
"prompt"
|
|
214
229
|
]
|
|
215
230
|
}
|
|
216
231
|
},
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "omnikit-sites",
|
|
3
|
+
"name": "OmniKit Sites",
|
|
4
|
+
"description": "Block-composed multi-tenant marketing sites: provision tenants from templates, manage pages, granularly patch blocks, and publish via the OmniKit content-site runtime.",
|
|
5
|
+
"logo": "https://cdn.omnikit.co/cdn/project-10/public/omnikit-sites.png",
|
|
6
|
+
"categories": [
|
|
7
|
+
"omnikit",
|
|
8
|
+
"sites",
|
|
9
|
+
"cms",
|
|
10
|
+
"website-builder",
|
|
11
|
+
"pages",
|
|
12
|
+
"blocks",
|
|
13
|
+
"multi-tenant"
|
|
14
|
+
],
|
|
15
|
+
"base_url": "https://api.omnikit.co",
|
|
16
|
+
"auth": {
|
|
17
|
+
"types": ["api_key"],
|
|
18
|
+
"headers": { "X-API-Key": "{{api_key}}" },
|
|
19
|
+
"credential_fields": [
|
|
20
|
+
{
|
|
21
|
+
"name": "api_key",
|
|
22
|
+
"label": "Api Key",
|
|
23
|
+
"description": "Your OmniKit API key (starts with 'okt_'). The project is determined automatically from the key."
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"tools": [
|
|
28
|
+
{
|
|
29
|
+
"name": "create_site",
|
|
30
|
+
"description": "Provision a new content-site tenant: inserts the site row, seeds pages from a template, and registers routing. Returns 202 with status='dns_wait' — reconciler handles DNS/TLS.",
|
|
31
|
+
"method": "POST",
|
|
32
|
+
"path": "/content-sites",
|
|
33
|
+
"input_schema": {
|
|
34
|
+
"type": "object",
|
|
35
|
+
"properties": {
|
|
36
|
+
"project_id": { "type": "integer", "description": "Project owning the site" },
|
|
37
|
+
"primary_domain": { "type": "string", "description": "Hostname the site will serve (e.g. acme.com)" },
|
|
38
|
+
"name": { "type": "string", "description": "Human-readable label" },
|
|
39
|
+
"template": { "type": "string", "default": "minimal", "description": "Template slug to seed content from" },
|
|
40
|
+
"theme": { "type": "string", "enum": ["auto", "light", "dark"], "default": "auto" },
|
|
41
|
+
"owner_email": { "type": "string" },
|
|
42
|
+
"metadata": { "type": "object", "default": {} }
|
|
43
|
+
},
|
|
44
|
+
"required": ["project_id", "primary_domain", "name"]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "list_sites",
|
|
49
|
+
"description": "List sites, optionally filtered by project_id or status.",
|
|
50
|
+
"method": "GET",
|
|
51
|
+
"path": "/content-sites",
|
|
52
|
+
"input_schema": {
|
|
53
|
+
"type": "object",
|
|
54
|
+
"properties": {
|
|
55
|
+
"project_id": { "type": "integer" },
|
|
56
|
+
"status": { "type": "string" },
|
|
57
|
+
"limit": { "type": "integer", "default": 50 },
|
|
58
|
+
"offset": { "type": "integer", "default": 0 }
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "get_site",
|
|
64
|
+
"description": "Get a site with its domains and recent events.",
|
|
65
|
+
"method": "GET",
|
|
66
|
+
"path": "/content-sites/{id}",
|
|
67
|
+
"input_schema": {
|
|
68
|
+
"type": "object",
|
|
69
|
+
"properties": { "id": { "type": "string", "description": "Site ID" } },
|
|
70
|
+
"required": ["id"]
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "update_site",
|
|
75
|
+
"description": "Update site fields (name, theme, metadata, owner_email). Does not change domain or project ownership.",
|
|
76
|
+
"method": "PATCH",
|
|
77
|
+
"path": "/content-sites/{id}",
|
|
78
|
+
"input_schema": {
|
|
79
|
+
"type": "object",
|
|
80
|
+
"properties": {
|
|
81
|
+
"id": { "type": "string" },
|
|
82
|
+
"name": { "type": "string" },
|
|
83
|
+
"theme": { "type": "string", "enum": ["auto", "light", "dark"] },
|
|
84
|
+
"metadata": { "type": "object" },
|
|
85
|
+
"owner_email": { "type": "string" }
|
|
86
|
+
},
|
|
87
|
+
"required": ["id"]
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "delete_site",
|
|
92
|
+
"description": "Tear down a site: remove routing, clear content, unlink domains.",
|
|
93
|
+
"method": "DELETE",
|
|
94
|
+
"path": "/content-sites/{id}",
|
|
95
|
+
"input_schema": {
|
|
96
|
+
"type": "object",
|
|
97
|
+
"properties": { "id": { "type": "string" } },
|
|
98
|
+
"required": ["id"]
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "list_pages",
|
|
103
|
+
"description": "List all pages for a site.",
|
|
104
|
+
"method": "GET",
|
|
105
|
+
"path": "/content-sites/{site_id}/pages",
|
|
106
|
+
"input_schema": {
|
|
107
|
+
"type": "object",
|
|
108
|
+
"properties": { "site_id": { "type": "string" } },
|
|
109
|
+
"required": ["site_id"]
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "get_page",
|
|
114
|
+
"description": "Get one page with its title, description, and blocks.",
|
|
115
|
+
"method": "GET",
|
|
116
|
+
"path": "/content-sites/{site_id}/pages/{slug}",
|
|
117
|
+
"input_schema": {
|
|
118
|
+
"type": "object",
|
|
119
|
+
"properties": {
|
|
120
|
+
"site_id": { "type": "string" },
|
|
121
|
+
"slug": { "type": "string" }
|
|
122
|
+
},
|
|
123
|
+
"required": ["site_id", "slug"]
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "put_page",
|
|
128
|
+
"description": "Create (if slug is new) or overwrite a page. Body is the full page document.",
|
|
129
|
+
"method": "PUT",
|
|
130
|
+
"path": "/content-sites/{site_id}/pages/{slug}",
|
|
131
|
+
"input_schema": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"site_id": { "type": "string" },
|
|
135
|
+
"slug": { "type": "string", "description": "URL-friendly slug (lowercase, a-z 0-9 - _)" },
|
|
136
|
+
"title": { "type": "string" },
|
|
137
|
+
"description": { "type": "string" },
|
|
138
|
+
"blocks": {
|
|
139
|
+
"type": "array",
|
|
140
|
+
"description": "Ordered blocks; each is { type, props }",
|
|
141
|
+
"items": {
|
|
142
|
+
"type": "object",
|
|
143
|
+
"properties": {
|
|
144
|
+
"type": { "type": "string", "description": "Block type name from the site's block registry (e.g. Hero, Features, CTA)" },
|
|
145
|
+
"props": { "type": "object", "description": "Block-specific props" }
|
|
146
|
+
},
|
|
147
|
+
"required": ["type"]
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"required": ["site_id", "slug", "title", "blocks"]
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "delete_page",
|
|
156
|
+
"description": "Delete a page.",
|
|
157
|
+
"method": "DELETE",
|
|
158
|
+
"path": "/content-sites/{site_id}/pages/{slug}",
|
|
159
|
+
"input_schema": {
|
|
160
|
+
"type": "object",
|
|
161
|
+
"properties": {
|
|
162
|
+
"site_id": { "type": "string" },
|
|
163
|
+
"slug": { "type": "string" }
|
|
164
|
+
},
|
|
165
|
+
"required": ["site_id", "slug"]
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "patch_block",
|
|
170
|
+
"description": "Granular block edit on a page. One of: merge props at index, insert at index, remove at index, reorder, or JSON-Patch (RFC-6902) on the blocks array.\n\nShapes:\n- Merge: { index, type?, props? } — deep-merges props, optionally replaces type\n- { op: 'remove', index }\n- { op: 'insert', index?, block: { type, props } } — index omitted = append\n- { op: 'reorder', order: [int, ...] } — permutation of current indices\n- { op: 'patch_json', patches: [RFC-6902 ops] }",
|
|
171
|
+
"method": "PATCH",
|
|
172
|
+
"path": "/content-sites/{site_id}/pages/{slug}/blocks",
|
|
173
|
+
"input_schema": {
|
|
174
|
+
"type": "object",
|
|
175
|
+
"properties": {
|
|
176
|
+
"site_id": { "type": "string" },
|
|
177
|
+
"slug": { "type": "string" },
|
|
178
|
+
"op": { "type": "string", "enum": ["remove", "insert", "reorder", "patch_json"] },
|
|
179
|
+
"index": { "type": "integer" },
|
|
180
|
+
"type": { "type": "string" },
|
|
181
|
+
"props": { "type": "object" },
|
|
182
|
+
"block": {
|
|
183
|
+
"type": "object",
|
|
184
|
+
"properties": {
|
|
185
|
+
"type": { "type": "string" },
|
|
186
|
+
"props": { "type": "object" }
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"order": { "type": "array", "items": { "type": "integer" } },
|
|
190
|
+
"patches": { "type": "array", "items": { "type": "object" } }
|
|
191
|
+
},
|
|
192
|
+
"required": ["site_id", "slug"]
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "list_templates",
|
|
197
|
+
"description": "List all available site templates.",
|
|
198
|
+
"method": "GET",
|
|
199
|
+
"path": "/content-site-templates",
|
|
200
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "get_template",
|
|
204
|
+
"description": "Get one template with full site_json + pages.",
|
|
205
|
+
"method": "GET",
|
|
206
|
+
"path": "/content-site-templates/{slug}",
|
|
207
|
+
"input_schema": {
|
|
208
|
+
"type": "object",
|
|
209
|
+
"properties": { "slug": { "type": "string" } },
|
|
210
|
+
"required": ["slug"]
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"webhooks": {
|
|
215
|
+
"signature_header": "x-webhook-signature",
|
|
216
|
+
"registration": {
|
|
217
|
+
"method": "POST",
|
|
218
|
+
"path": "/webhooks-register",
|
|
219
|
+
"url_field": "endpoint_url",
|
|
220
|
+
"events_field": "event_types",
|
|
221
|
+
"secret_field": "secret_key",
|
|
222
|
+
"id_field": "webhook_id",
|
|
223
|
+
"extra": {
|
|
224
|
+
"name": "Apteva Webhook",
|
|
225
|
+
"direction": "outgoing",
|
|
226
|
+
"provider": "custom",
|
|
227
|
+
"auth_type": "hmac-sha256"
|
|
228
|
+
},
|
|
229
|
+
"delete_path": "/webhooks/{id}",
|
|
230
|
+
"delete_method": "DELETE",
|
|
231
|
+
"list_path": "/webhooks",
|
|
232
|
+
"list_field": "data"
|
|
233
|
+
},
|
|
234
|
+
"events": [
|
|
235
|
+
{ "name": "site.created", "description": "New site provisioned" },
|
|
236
|
+
{ "name": "site.updated", "description": "Site fields updated" },
|
|
237
|
+
{ "name": "site.deleted", "description": "Site torn down" },
|
|
238
|
+
{ "name": "site.content_seeded", "description": "Template content seeded into a site" },
|
|
239
|
+
{ "name": "site.routing_added", "description": "Orchestrator routing registered" },
|
|
240
|
+
{ "name": "site.page_created", "description": "New page created on a site" },
|
|
241
|
+
{ "name": "site.page_updated", "description": "Page overwritten" },
|
|
242
|
+
{ "name": "site.page_deleted", "description": "Page deleted" },
|
|
243
|
+
{ "name": "site.block_patched", "description": "Block granularly edited" }
|
|
244
|
+
]
|
|
245
|
+
}
|
|
246
|
+
}
|
package/src/apps/socialcast.json
CHANGED