@apteva/integrations 0.3.13 → 0.3.15

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 (69) hide show
  1. package/package.json +1 -1
  2. package/src/apps/apollo.json +5 -5
  3. package/src/apps/assemblyai.json +2 -2
  4. package/src/apps/attio.json +2 -2
  5. package/src/apps/axiom.json +1 -1
  6. package/src/apps/beehiiv.json +5 -5
  7. package/src/apps/bitly.json +4 -4
  8. package/src/apps/bloobirds.json +1 -1
  9. package/src/apps/box.json +3 -3
  10. package/src/apps/brevo.json +20 -20
  11. package/src/apps/browse-ai.json +4 -4
  12. package/src/apps/bunny-cdn.json +4 -4
  13. package/src/apps/bunny-stream.json +8 -8
  14. package/src/apps/cal-com.json +1 -1
  15. package/src/apps/calendly.json +6 -6
  16. package/src/apps/canva.json +3 -3
  17. package/src/apps/cartesia.json +1 -1
  18. package/src/apps/composio.json +2 -2
  19. package/src/apps/convertkit.json +2 -2
  20. package/src/apps/core-video.json +7 -7
  21. package/src/apps/dialpad.json +2 -2
  22. package/src/apps/dnsimple.json +12 -12
  23. package/src/apps/eventbrite-events.json +16 -16
  24. package/src/apps/fal-ai.json +5 -5
  25. package/src/apps/folk.json +5 -5
  26. package/src/apps/gigs-marketplace.json +30 -30
  27. package/src/apps/github.json +31 -31
  28. package/src/apps/gmail.json +16 -16
  29. package/src/apps/gohighlevel.json +3 -3
  30. package/src/apps/google-ads.json +8 -8
  31. package/src/apps/google-calendar.json +16 -16
  32. package/src/apps/google-drive.json +7 -7
  33. package/src/apps/google-sheets.json +7 -7
  34. package/src/apps/hackernews.json +2 -2
  35. package/src/apps/helpscout.json +3 -3
  36. package/src/apps/heygen.json +881 -58
  37. package/src/apps/hunter.json +5 -5
  38. package/src/apps/instagram-api.json +4 -6
  39. package/src/apps/late.json +17 -17
  40. package/src/apps/leadpages.json +4 -4
  41. package/src/apps/learning-platform.json +53 -53
  42. package/src/apps/marin-software.json +2 -2
  43. package/src/apps/notion.json +12 -12
  44. package/src/apps/omnikit-analytics.json +1 -1
  45. package/src/apps/omnikit-api-gateway.json +11 -11
  46. package/src/apps/omnikit-billing.json +21 -21
  47. package/src/apps/omnikit-cms.json +23 -23
  48. package/src/apps/omnikit-code-ops.json +1183 -0
  49. package/src/apps/omnikit-functions.json +6 -6
  50. package/src/apps/omnikit-intelligence.json +1 -1
  51. package/src/apps/omnikit-management.json +3 -3
  52. package/src/apps/omnikit-messaging.json +25 -25
  53. package/src/apps/omnikit-redirects.json +1 -1
  54. package/src/apps/omnikit-webhooks.json +3 -3
  55. package/src/apps/optinmonster.json +4 -4
  56. package/src/apps/paidkit.json +13 -13
  57. package/src/apps/polymarket.json +5 -5
  58. package/src/apps/porkbun.json +12 -12
  59. package/src/apps/rankbird.json +51 -56
  60. package/src/apps/skai.json +4 -4
  61. package/src/apps/smartly.json +1 -1
  62. package/src/apps/socialcast.json +30 -12
  63. package/src/apps/stripe-payments.json +9 -9
  64. package/src/apps/taskflow.json +11 -11
  65. package/src/apps/ticktick.json +3 -3
  66. package/src/apps/tiktok-api.json +78 -0
  67. package/src/apps/todoist.json +1 -1
  68. package/src/apps/twilio.json +28 -28
  69. package/src/apps/twitter-api.json +86 -30
@@ -0,0 +1,1183 @@
1
+ {
2
+ "slug": "omnikit-code-ops",
3
+ "name": "OmniKit Code Ops",
4
+ "description": "Operations & infrastructure via OmniKit — deployments (web, Docker, App Store, Play Store), custom domains & DNS, CI/CD pipelines, container management, and iOS/Android simulators.",
5
+ "logo": "https://cdn-icons-png.flaticon.com/512/6062/6062646.png",
6
+ "categories": [
7
+ "deployments",
8
+ "domains",
9
+ "ci-cd",
10
+ "pipelines",
11
+ "simulator",
12
+ "docker",
13
+ "app-store",
14
+ "play-store",
15
+ "containers",
16
+ "omnikit"
17
+ ],
18
+ "base_url": "https://api.omnikit.co",
19
+ "auth": {
20
+ "types": [
21
+ "bearer"
22
+ ],
23
+ "headers": {
24
+ "Authorization": "Bearer {{token}}"
25
+ },
26
+ "credential_fields": [
27
+ {
28
+ "name": "token",
29
+ "label": "API Key"
30
+ }
31
+ ]
32
+ },
33
+ "tools": [
34
+ {
35
+ "name": "omnikit_code_deploy",
36
+ "description": "Deploy a build to an environment (production, staging, or development)",
37
+ "method": "POST",
38
+ "path": "/repositories/{repository_id}/deploy",
39
+ "input_schema": {
40
+ "type": "object",
41
+ "properties": {
42
+ "repository_id": {
43
+ "type": "integer",
44
+ "description": "Repository ID"
45
+ },
46
+ "build_id": {
47
+ "type": "integer",
48
+ "description": "Build ID to deploy (defaults to latest successful build)"
49
+ },
50
+ "environment": {
51
+ "type": "string",
52
+ "enum": [
53
+ "production",
54
+ "staging",
55
+ "development"
56
+ ],
57
+ "default": "production",
58
+ "description": "Target environment"
59
+ },
60
+ "force": {
61
+ "type": "boolean",
62
+ "default": false,
63
+ "description": "Stop existing deployment and redeploy"
64
+ }
65
+ },
66
+ "required": [
67
+ "repository_id"
68
+ ]
69
+ }
70
+ },
71
+ {
72
+ "name": "omnikit_code_deploy_container",
73
+ "description": "Deploy a container build to an instance using docker service",
74
+ "method": "POST",
75
+ "path": "/deployment-targets/{target_id}/deploy",
76
+ "input_schema": {
77
+ "type": "object",
78
+ "properties": {
79
+ "target_id": {
80
+ "type": "integer",
81
+ "description": "Deployment target ID"
82
+ },
83
+ "build_id": {
84
+ "type": "integer",
85
+ "description": "Build ID to deploy"
86
+ },
87
+ "force": {
88
+ "type": "boolean",
89
+ "default": false,
90
+ "description": "Force deployment even if one is running"
91
+ },
92
+ "rollback_on_failure": {
93
+ "type": "boolean",
94
+ "default": true,
95
+ "description": "Rollback to previous deployment on failure"
96
+ },
97
+ "health_check_timeout": {
98
+ "type": "integer",
99
+ "default": 300,
100
+ "description": "Health check timeout in seconds"
101
+ }
102
+ },
103
+ "required": [
104
+ "target_id",
105
+ "build_id"
106
+ ]
107
+ }
108
+ },
109
+ {
110
+ "name": "omnikit_code_deploy_static_site",
111
+ "description": "Deploy a static site build to storage service (CDN-style)",
112
+ "method": "POST",
113
+ "path": "/deployment-targets/{target_id}/deploy-static",
114
+ "input_schema": {
115
+ "type": "object",
116
+ "properties": {
117
+ "target_id": {
118
+ "type": "integer",
119
+ "description": "Deployment target ID"
120
+ },
121
+ "build_id": {
122
+ "type": "integer",
123
+ "description": "Build ID to deploy"
124
+ },
125
+ "force": {
126
+ "type": "boolean",
127
+ "default": false,
128
+ "description": "Force deployment even if one is running"
129
+ },
130
+ "backup_previous": {
131
+ "type": "boolean",
132
+ "default": true,
133
+ "description": "Backup previous deployment before deploying"
134
+ }
135
+ },
136
+ "required": [
137
+ "target_id",
138
+ "build_id"
139
+ ]
140
+ }
141
+ },
142
+ {
143
+ "name": "omnikit_code_list_deployments",
144
+ "description": "List deployments for a repository or build with filtering and pagination",
145
+ "method": "GET",
146
+ "path": "/repositories/{repository_id}/deployments",
147
+ "input_schema": {
148
+ "type": "object",
149
+ "properties": {
150
+ "repository_id": {
151
+ "type": "integer",
152
+ "description": "Filter by repository ID"
153
+ },
154
+ "build_id": {
155
+ "type": "integer",
156
+ "description": "Filter by build ID"
157
+ },
158
+ "status": {
159
+ "type": "string",
160
+ "enum": [
161
+ "pending",
162
+ "deploying",
163
+ "running",
164
+ "success",
165
+ "failed",
166
+ "stopped",
167
+ "cancelled"
168
+ ],
169
+ "description": "Filter by deployment status"
170
+ },
171
+ "environment": {
172
+ "type": "string",
173
+ "description": "Filter by environment (production, staging, development)"
174
+ },
175
+ "limit": {
176
+ "type": "integer",
177
+ "default": 20,
178
+ "description": "Maximum number of deployments to return"
179
+ },
180
+ "offset": {
181
+ "type": "integer",
182
+ "default": 0,
183
+ "description": "Offset for pagination"
184
+ }
185
+ },
186
+ "required": [
187
+ "repository_id"
188
+ ]
189
+ }
190
+ },
191
+ {
192
+ "name": "omnikit_code_get_deployment_status",
193
+ "description": "Get deployment status and details including container health",
194
+ "method": "GET",
195
+ "path": "/deployments/{deployment_id}",
196
+ "input_schema": {
197
+ "type": "object",
198
+ "properties": {
199
+ "deployment_id": {
200
+ "type": "integer",
201
+ "description": "Deployment ID to get status for"
202
+ }
203
+ },
204
+ "required": [
205
+ "deployment_id"
206
+ ]
207
+ }
208
+ },
209
+ {
210
+ "name": "omnikit_code_delete_deployment",
211
+ "description": "Stop and delete a deployment",
212
+ "method": "DELETE",
213
+ "path": "/deployments/{deployment_id}",
214
+ "input_schema": {
215
+ "type": "object",
216
+ "properties": {
217
+ "deployment_id": {
218
+ "type": "integer",
219
+ "description": "Deployment ID to delete"
220
+ },
221
+ "remove_container": {
222
+ "type": "boolean",
223
+ "default": true,
224
+ "description": "Remove the container after stopping"
225
+ }
226
+ },
227
+ "required": [
228
+ "deployment_id"
229
+ ]
230
+ }
231
+ },
232
+ {
233
+ "name": "omnikit_code_update_environment",
234
+ "description": "Update environment configuration for a repository (auto-deploy, domain, env vars, resources)",
235
+ "method": "PUT",
236
+ "path": "/repositories/{repository_id}/environments/{environment}",
237
+ "input_schema": {
238
+ "type": "object",
239
+ "properties": {
240
+ "repository_id": {
241
+ "type": "integer",
242
+ "description": "Repository ID"
243
+ },
244
+ "environment": {
245
+ "type": "string",
246
+ "enum": [
247
+ "production",
248
+ "staging",
249
+ "development"
250
+ ],
251
+ "description": "Environment name"
252
+ },
253
+ "auto_deploy": {
254
+ "type": "boolean",
255
+ "description": "Enable auto-deploy when builds succeed"
256
+ },
257
+ "branch": {
258
+ "type": "string",
259
+ "description": "Git branch for auto-deploy"
260
+ },
261
+ "domain": {
262
+ "type": "string",
263
+ "description": "Custom domain for this environment"
264
+ },
265
+ "env_vars": {
266
+ "type": "object",
267
+ "description": "Environment variables (set value to null to delete)"
268
+ },
269
+ "resources": {
270
+ "type": "object",
271
+ "description": "Resource limits (memory in MB, cpu as decimal)"
272
+ },
273
+ "port": {
274
+ "type": "integer",
275
+ "description": "Container port"
276
+ }
277
+ },
278
+ "required": [
279
+ "repository_id",
280
+ "environment"
281
+ ]
282
+ }
283
+ },
284
+ {
285
+ "name": "omnikit_code_create_domain",
286
+ "description": "Create a domain with SSL certificate and Nginx configuration",
287
+ "method": "POST",
288
+ "path": "/domains",
289
+ "input_schema": {
290
+ "type": "object",
291
+ "properties": {
292
+ "domain": {
293
+ "type": "string",
294
+ "description": "Domain name (e.g., example.com)"
295
+ },
296
+ "subdomains": {
297
+ "type": "array",
298
+ "items": {
299
+ "type": "string"
300
+ },
301
+ "default": [],
302
+ "description": "Subdomains to configure (e.g., ['www', 'api'])"
303
+ },
304
+ "repository_id": {
305
+ "type": "integer",
306
+ "description": "Repository ID to link domain to"
307
+ },
308
+ "deployment_id": {
309
+ "type": "integer",
310
+ "description": "Deployment ID to link domain to (will auto-detect port)"
311
+ },
312
+ "environment": {
313
+ "type": "string",
314
+ "description": "Environment (production, staging, development)"
315
+ },
316
+ "upstream_host": {
317
+ "type": "string",
318
+ "default": "localhost",
319
+ "description": "Upstream host for proxying"
320
+ },
321
+ "upstream_port": {
322
+ "type": "integer",
323
+ "description": "Upstream port for proxying"
324
+ },
325
+ "ssl_email": {
326
+ "type": "string",
327
+ "description": "Email for SSL certificate notifications"
328
+ },
329
+ "ssl_enabled": {
330
+ "type": "boolean",
331
+ "default": true,
332
+ "description": "Enable SSL certificate"
333
+ },
334
+ "auto_configure": {
335
+ "type": "boolean",
336
+ "default": true,
337
+ "description": "Automatically configure SSL and Nginx"
338
+ }
339
+ },
340
+ "required": [
341
+ "domain"
342
+ ]
343
+ }
344
+ },
345
+ {
346
+ "name": "omnikit_code_get_domain",
347
+ "description": "Get domain details by ID or domain name",
348
+ "method": "GET",
349
+ "path": "/domains/{domain_id}",
350
+ "input_schema": {
351
+ "type": "object",
352
+ "properties": {
353
+ "domain_id": {
354
+ "type": "string",
355
+ "description": "Domain ID (UUID)"
356
+ },
357
+ "domain": {
358
+ "type": "string",
359
+ "description": "Domain name (e.g., example.com)"
360
+ }
361
+ }
362
+ }
363
+ },
364
+ {
365
+ "name": "omnikit_code_list_domains",
366
+ "description": "List domains with filtering by repository, deployment, environment, or SSL status",
367
+ "method": "GET",
368
+ "path": "/domains",
369
+ "input_schema": {
370
+ "type": "object",
371
+ "properties": {
372
+ "repository_id": {
373
+ "type": "integer",
374
+ "description": "Filter by repository ID"
375
+ },
376
+ "deployment_id": {
377
+ "type": "integer",
378
+ "description": "Filter by deployment ID"
379
+ },
380
+ "environment": {
381
+ "type": "string",
382
+ "description": "Filter by environment"
383
+ },
384
+ "ssl_status": {
385
+ "type": "string",
386
+ "enum": [
387
+ "pending",
388
+ "active",
389
+ "failed",
390
+ "expired",
391
+ "disabled"
392
+ ],
393
+ "description": "Filter by SSL status"
394
+ },
395
+ "limit": {
396
+ "type": "integer",
397
+ "default": 20,
398
+ "description": "Maximum number of domains to return"
399
+ },
400
+ "offset": {
401
+ "type": "integer",
402
+ "default": 0,
403
+ "description": "Offset for pagination"
404
+ }
405
+ }
406
+ }
407
+ },
408
+ {
409
+ "name": "omnikit_code_delete_domain",
410
+ "description": "Delete a domain and its SSL/Nginx configuration",
411
+ "method": "DELETE",
412
+ "path": "/domains/{domain_id}",
413
+ "input_schema": {
414
+ "type": "object",
415
+ "properties": {
416
+ "domain_id": {
417
+ "type": "string",
418
+ "description": "Domain ID to delete"
419
+ },
420
+ "remove_ssl": {
421
+ "type": "boolean",
422
+ "default": true,
423
+ "description": "Remove SSL certificate"
424
+ },
425
+ "remove_nginx": {
426
+ "type": "boolean",
427
+ "default": true,
428
+ "description": "Remove Nginx configuration"
429
+ }
430
+ },
431
+ "required": [
432
+ "domain_id"
433
+ ]
434
+ }
435
+ },
436
+ {
437
+ "name": "omnikit_code_configure_dns",
438
+ "description": "Configure DNS records for a domain via Namecheap API. Supports replace, append, or remove actions.",
439
+ "method": "POST",
440
+ "path": "/domains/{domain_id}/dns",
441
+ "input_schema": {
442
+ "type": "object",
443
+ "properties": {
444
+ "domain_id": {
445
+ "type": "string",
446
+ "description": "Domain ID (UUID)"
447
+ },
448
+ "records": {
449
+ "type": "array",
450
+ "items": {
451
+ "type": "object",
452
+ "properties": {
453
+ "type": {
454
+ "type": "string",
455
+ "enum": [
456
+ "A",
457
+ "AAAA",
458
+ "CNAME",
459
+ "MX",
460
+ "TXT",
461
+ "NS",
462
+ "SRV"
463
+ ],
464
+ "description": "DNS record type"
465
+ },
466
+ "name": {
467
+ "type": "string",
468
+ "description": "Record name (e.g., '@' for root, 'www' for subdomain)"
469
+ },
470
+ "value": {
471
+ "type": "string",
472
+ "description": "Record value (IP address, hostname, etc.)"
473
+ },
474
+ "ttl": {
475
+ "type": "integer",
476
+ "default": 300,
477
+ "description": "TTL in seconds"
478
+ },
479
+ "priority": {
480
+ "type": "integer",
481
+ "description": "Priority (required for MX records)"
482
+ }
483
+ },
484
+ "required": [
485
+ "type",
486
+ "name",
487
+ "value"
488
+ ]
489
+ },
490
+ "description": "DNS records to configure"
491
+ },
492
+ "action": {
493
+ "type": "string",
494
+ "enum": [
495
+ "replace",
496
+ "append",
497
+ "remove"
498
+ ],
499
+ "default": "replace",
500
+ "description": "Action: replace all records, append new records, or remove specified records"
501
+ },
502
+ "project_id": {
503
+ "type": "string",
504
+ "description": "Project ID for credential resolution (optional, uses domain's project_id if not provided)"
505
+ }
506
+ },
507
+ "required": [
508
+ "domain_id",
509
+ "records"
510
+ ]
511
+ }
512
+ },
513
+ {
514
+ "name": "omnikit_code_link_domain",
515
+ "description": "Link a domain to a deployment and update Nginx upstream",
516
+ "method": "POST",
517
+ "path": "/domains/{domain_id}/link",
518
+ "input_schema": {
519
+ "type": "object",
520
+ "properties": {
521
+ "domain_id": {
522
+ "type": "string",
523
+ "description": "Domain ID to link"
524
+ },
525
+ "deployment_id": {
526
+ "type": "integer",
527
+ "description": "Deployment ID to link to (will auto-detect port)"
528
+ },
529
+ "upstream_host": {
530
+ "type": "string",
531
+ "default": "localhost",
532
+ "description": "Upstream host for proxying"
533
+ },
534
+ "upstream_port": {
535
+ "type": "integer",
536
+ "description": "Upstream port for proxying"
537
+ },
538
+ "update_nginx": {
539
+ "type": "boolean",
540
+ "default": true,
541
+ "description": "Update Nginx configuration with new upstream"
542
+ }
543
+ },
544
+ "required": [
545
+ "domain_id"
546
+ ]
547
+ }
548
+ },
549
+ {
550
+ "name": "omnikit_code_trigger_pipeline",
551
+ "description": "Trigger a CI/CD pipeline execution for a repository",
552
+ "method": "POST",
553
+ "path": "/pipelines/{pipeline_id}/trigger",
554
+ "input_schema": {
555
+ "type": "object",
556
+ "properties": {
557
+ "pipeline_id": {
558
+ "type": "integer",
559
+ "description": "Pipeline ID to trigger"
560
+ },
561
+ "repository_id": {
562
+ "type": "integer",
563
+ "description": "Repository ID"
564
+ },
565
+ "branch_name": {
566
+ "type": "string",
567
+ "default": "main",
568
+ "description": "Branch to run pipeline on"
569
+ },
570
+ "pipeline_config": {
571
+ "type": "object",
572
+ "description": "Pipeline configuration overrides"
573
+ },
574
+ "variables": {
575
+ "type": "object",
576
+ "description": "Pipeline variables"
577
+ }
578
+ },
579
+ "required": [
580
+ "pipeline_id"
581
+ ]
582
+ }
583
+ },
584
+ {
585
+ "name": "omnikit_code_get_pipeline_status",
586
+ "description": "Get pipeline execution status and details",
587
+ "method": "GET",
588
+ "path": "/pipeline-executions/{execution_id}",
589
+ "input_schema": {
590
+ "type": "object",
591
+ "properties": {
592
+ "execution_id": {
593
+ "type": "integer",
594
+ "description": "Pipeline execution ID"
595
+ }
596
+ },
597
+ "required": [
598
+ "execution_id"
599
+ ]
600
+ }
601
+ },
602
+ {
603
+ "name": "omnikit_code_create_build_config",
604
+ "description": "Create a build configuration for a repository (container, static, function, or custom build type)",
605
+ "method": "POST",
606
+ "path": "/repositories/{repository_id}/build-configs",
607
+ "input_schema": {
608
+ "type": "object",
609
+ "properties": {
610
+ "repository_id": {
611
+ "type": "integer",
612
+ "description": "Repository ID"
613
+ },
614
+ "name": {
615
+ "type": "string",
616
+ "description": "Build configuration name"
617
+ },
618
+ "type": {
619
+ "type": "string",
620
+ "enum": [
621
+ "container",
622
+ "static",
623
+ "function",
624
+ "custom"
625
+ ],
626
+ "description": "Build type"
627
+ },
628
+ "dockerfile_path": {
629
+ "type": "string",
630
+ "default": "Dockerfile",
631
+ "description": "Path to Dockerfile"
632
+ },
633
+ "build_context": {
634
+ "type": "string",
635
+ "default": ".",
636
+ "description": "Docker build context directory"
637
+ },
638
+ "build_args": {
639
+ "type": "object",
640
+ "description": "Docker build arguments"
641
+ },
642
+ "environment_variables": {
643
+ "type": "object",
644
+ "description": "Environment variables for the build"
645
+ },
646
+ "build_command": {
647
+ "type": "string",
648
+ "description": "Custom build command"
649
+ },
650
+ "output_directory": {
651
+ "type": "string",
652
+ "default": "dist",
653
+ "description": "Output directory for static builds"
654
+ },
655
+ "install_command": {
656
+ "type": "string",
657
+ "default": "npm install",
658
+ "description": "Install command"
659
+ },
660
+ "node_version": {
661
+ "type": "string",
662
+ "default": "20",
663
+ "description": "Node.js version"
664
+ },
665
+ "base_image": {
666
+ "type": "string",
667
+ "description": "Base Docker image"
668
+ },
669
+ "auto_build_on_push": {
670
+ "type": "boolean",
671
+ "default": true,
672
+ "description": "Automatically build on push"
673
+ },
674
+ "trigger_branches": {
675
+ "type": "array",
676
+ "items": {
677
+ "type": "string"
678
+ },
679
+ "default": [
680
+ "main"
681
+ ],
682
+ "description": "Branches that trigger builds"
683
+ },
684
+ "cpu_limit": {
685
+ "type": "number",
686
+ "default": 1,
687
+ "description": "CPU limit for builds"
688
+ },
689
+ "memory_limit": {
690
+ "type": "number",
691
+ "default": 1024,
692
+ "description": "Memory limit in MB for builds"
693
+ },
694
+ "timeout_minutes": {
695
+ "type": "number",
696
+ "default": 30,
697
+ "description": "Build timeout in minutes"
698
+ }
699
+ },
700
+ "required": [
701
+ "repository_id",
702
+ "name",
703
+ "type"
704
+ ]
705
+ }
706
+ },
707
+ {
708
+ "name": "omnikit_code_create_pipeline",
709
+ "description": "Create a CI/CD pipeline for a repository with configurable trigger types (push, tag, manual, schedule, webhook) and multi-step execution",
710
+ "method": "POST",
711
+ "path": "/repositories/{repository_id}/pipelines",
712
+ "input_schema": {
713
+ "type": "object",
714
+ "properties": {
715
+ "repository_id": {
716
+ "type": "integer",
717
+ "description": "Repository ID"
718
+ },
719
+ "name": {
720
+ "type": "string",
721
+ "description": "Pipeline name"
722
+ },
723
+ "trigger_type": {
724
+ "type": "string",
725
+ "enum": [
726
+ "push",
727
+ "tag",
728
+ "manual",
729
+ "schedule",
730
+ "webhook"
731
+ ],
732
+ "default": "push",
733
+ "description": "What triggers the pipeline"
734
+ },
735
+ "trigger_branches": {
736
+ "type": "array",
737
+ "items": {
738
+ "type": "string"
739
+ },
740
+ "default": [
741
+ "main"
742
+ ],
743
+ "description": "Branches that trigger the pipeline"
744
+ },
745
+ "trigger_tags": {
746
+ "type": "array",
747
+ "items": {
748
+ "type": "string"
749
+ },
750
+ "description": "Tag patterns that trigger the pipeline"
751
+ },
752
+ "schedule_cron": {
753
+ "type": "string",
754
+ "description": "Cron expression for scheduled pipelines"
755
+ },
756
+ "steps": {
757
+ "type": "array",
758
+ "description": "Pipeline steps to execute in order",
759
+ "items": {
760
+ "type": "object",
761
+ "properties": {
762
+ "name": {
763
+ "type": "string",
764
+ "description": "Step name"
765
+ },
766
+ "type": {
767
+ "type": "string",
768
+ "enum": [
769
+ "build",
770
+ "test",
771
+ "deploy",
772
+ "notification",
773
+ "custom"
774
+ ],
775
+ "description": "Step type"
776
+ },
777
+ "config": {
778
+ "type": "object",
779
+ "description": "Step configuration"
780
+ },
781
+ "conditions": {
782
+ "type": "object",
783
+ "description": "Conditions for running this step"
784
+ },
785
+ "retry_count": {
786
+ "type": "number",
787
+ "default": 0,
788
+ "description": "Number of retries on failure"
789
+ },
790
+ "timeout_minutes": {
791
+ "type": "number",
792
+ "default": 30,
793
+ "description": "Step timeout in minutes"
794
+ },
795
+ "continue_on_failure": {
796
+ "type": "boolean",
797
+ "default": false,
798
+ "description": "Continue pipeline if this step fails"
799
+ }
800
+ },
801
+ "required": [
802
+ "name",
803
+ "type"
804
+ ]
805
+ }
806
+ },
807
+ "environment_variables": {
808
+ "type": "object",
809
+ "description": "Pipeline-level environment variables"
810
+ },
811
+ "parallel_execution": {
812
+ "type": "boolean",
813
+ "default": false,
814
+ "description": "Execute steps in parallel"
815
+ },
816
+ "auto_rollback": {
817
+ "type": "boolean",
818
+ "default": true,
819
+ "description": "Auto-rollback on deployment failure"
820
+ },
821
+ "is_active": {
822
+ "type": "boolean",
823
+ "default": true,
824
+ "description": "Whether the pipeline is active"
825
+ }
826
+ },
827
+ "required": [
828
+ "repository_id",
829
+ "name",
830
+ "steps"
831
+ ]
832
+ }
833
+ },
834
+ {
835
+ "name": "omnikit_ops_deploy_app_store",
836
+ "description": "Deploy an iOS build to the Apple App Store. Supports IOS, MAC_OS, and TV_OS platforms with optional submit-for-review.",
837
+ "method": "POST",
838
+ "path": "/repositories/{repository_id}/deploy/app-store",
839
+ "input_schema": {
840
+ "type": "object",
841
+ "properties": {
842
+ "repository_id": {
843
+ "type": "integer",
844
+ "description": "Repository ID"
845
+ },
846
+ "version_string": {
847
+ "type": "string",
848
+ "description": "App version string (e.g. 1.0.0)"
849
+ },
850
+ "build_id": {
851
+ "type": "integer",
852
+ "description": "Build ID to deploy (uses latest if not specified)"
853
+ },
854
+ "submit_for_review": {
855
+ "type": "boolean",
856
+ "description": "Auto-submit for App Store review",
857
+ "default": false
858
+ },
859
+ "platform": {
860
+ "type": "string",
861
+ "enum": [
862
+ "IOS",
863
+ "MAC_OS",
864
+ "TV_OS"
865
+ ],
866
+ "default": "IOS",
867
+ "description": "Target Apple platform"
868
+ }
869
+ },
870
+ "required": [
871
+ "repository_id",
872
+ "version_string"
873
+ ]
874
+ }
875
+ },
876
+ {
877
+ "name": "omnikit_ops_deploy_play_store",
878
+ "description": "Deploy an Android build to the Google Play Store with track selection (alpha, beta, production) and staged rollout support.",
879
+ "method": "POST",
880
+ "path": "/repositories/{repository_id}/deploy/play-store",
881
+ "input_schema": {
882
+ "type": "object",
883
+ "properties": {
884
+ "repository_id": {
885
+ "type": "integer",
886
+ "description": "Repository ID"
887
+ },
888
+ "build_id": {
889
+ "type": "integer",
890
+ "description": "Build ID to deploy"
891
+ },
892
+ "track": {
893
+ "type": "string",
894
+ "enum": [
895
+ "alpha",
896
+ "beta",
897
+ "production"
898
+ ],
899
+ "default": "production",
900
+ "description": "Release track"
901
+ },
902
+ "user_fraction": {
903
+ "type": "number",
904
+ "default": 1,
905
+ "description": "Staged rollout fraction (0.0-1.0)"
906
+ },
907
+ "release_notes": {
908
+ "type": "object",
909
+ "description": "Localized release notes, e.g. {\"en-US\": \"Bug fixes\"}"
910
+ }
911
+ },
912
+ "required": [
913
+ "repository_id"
914
+ ]
915
+ }
916
+ },
917
+ {
918
+ "name": "omnikit_ops_deploy_docker",
919
+ "description": "Build and deploy a Docker container from a repository with Dockerfile. Supports custom ports, env vars, and resource limits.",
920
+ "method": "POST",
921
+ "path": "/repositories/{repository_id}/deploy/docker",
922
+ "input_schema": {
923
+ "type": "object",
924
+ "properties": {
925
+ "repository_id": {
926
+ "type": "integer",
927
+ "description": "Repository ID"
928
+ },
929
+ "dockerfile_path": {
930
+ "type": "string",
931
+ "description": "Path to Dockerfile (default: Dockerfile)",
932
+ "default": "Dockerfile"
933
+ },
934
+ "port": {
935
+ "type": "integer",
936
+ "description": "Container port to expose"
937
+ },
938
+ "environment": {
939
+ "type": "object",
940
+ "description": "Environment variables as key-value pairs"
941
+ },
942
+ "build_args": {
943
+ "type": "object",
944
+ "description": "Docker build arguments"
945
+ }
946
+ },
947
+ "required": [
948
+ "repository_id"
949
+ ]
950
+ }
951
+ },
952
+ {
953
+ "name": "omnikit_ops_get_container_logs",
954
+ "description": "Get live logs from a running container deployment. Supports tail count and time-range filtering.",
955
+ "method": "GET",
956
+ "path": "/containers/{container_id}/logs",
957
+ "input_schema": {
958
+ "type": "object",
959
+ "properties": {
960
+ "container_id": {
961
+ "type": "string",
962
+ "description": "Container/deployment ID"
963
+ },
964
+ "tail": {
965
+ "type": "integer",
966
+ "description": "Number of recent log lines to return"
967
+ },
968
+ "since": {
969
+ "type": "string",
970
+ "description": "Show logs since timestamp (ISO 8601)"
971
+ },
972
+ "until": {
973
+ "type": "string",
974
+ "description": "Show logs until timestamp (ISO 8601)"
975
+ }
976
+ },
977
+ "required": [
978
+ "container_id"
979
+ ]
980
+ }
981
+ },
982
+ {
983
+ "name": "omnikit_ops_simulator_create_session",
984
+ "description": "Create a new iOS or Android simulator session. Optionally install an app or open a URL on boot.",
985
+ "method": "POST",
986
+ "path": "/simulator/sessions",
987
+ "input_schema": {
988
+ "type": "object",
989
+ "properties": {
990
+ "platform": {
991
+ "type": "string",
992
+ "enum": [
993
+ "ios",
994
+ "android"
995
+ ],
996
+ "description": "Simulator platform"
997
+ },
998
+ "device": {
999
+ "type": "string",
1000
+ "description": "Device model (e.g. iPhone 15, Pixel 8)"
1001
+ },
1002
+ "runtime": {
1003
+ "type": "string",
1004
+ "description": "OS version (e.g. iOS-17-2, API-34)"
1005
+ },
1006
+ "app_path": {
1007
+ "type": "string",
1008
+ "description": "URL to .app/.apk to install on boot"
1009
+ },
1010
+ "bundle_id": {
1011
+ "type": "string",
1012
+ "description": "Bundle ID to launch after install"
1013
+ },
1014
+ "url": {
1015
+ "type": "string",
1016
+ "description": "URL to open on boot"
1017
+ }
1018
+ },
1019
+ "required": [
1020
+ "platform"
1021
+ ]
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "omnikit_ops_simulator_get_session",
1026
+ "description": "Get details of a simulator session including status, device info, and connection URLs",
1027
+ "method": "GET",
1028
+ "path": "/simulator/sessions/{session_id}",
1029
+ "input_schema": {
1030
+ "type": "object",
1031
+ "properties": {
1032
+ "session_id": {
1033
+ "type": "string",
1034
+ "description": "Simulator session ID"
1035
+ }
1036
+ },
1037
+ "required": [
1038
+ "session_id"
1039
+ ]
1040
+ }
1041
+ },
1042
+ {
1043
+ "name": "omnikit_ops_simulator_list_sessions",
1044
+ "description": "List all active and recent simulator sessions",
1045
+ "method": "GET",
1046
+ "path": "/simulator/sessions",
1047
+ "input_schema": {
1048
+ "type": "object",
1049
+ "properties": {}
1050
+ }
1051
+ },
1052
+ {
1053
+ "name": "omnikit_ops_simulator_close_session",
1054
+ "description": "Close and destroy a simulator session, freeing resources",
1055
+ "method": "DELETE",
1056
+ "path": "/simulator/sessions/{session_id}",
1057
+ "input_schema": {
1058
+ "type": "object",
1059
+ "properties": {
1060
+ "session_id": {
1061
+ "type": "string",
1062
+ "description": "Simulator session ID to close"
1063
+ }
1064
+ },
1065
+ "required": [
1066
+ "session_id"
1067
+ ]
1068
+ }
1069
+ },
1070
+ {
1071
+ "name": "omnikit_ops_simulator_execute_command",
1072
+ "description": "Execute a command on a simulator session — tap, swipe, type text, take screenshot, install/launch apps, get accessibility tree, record screen, and more.",
1073
+ "method": "POST",
1074
+ "path": "/simulator/sessions/{session_id}/commands",
1075
+ "input_schema": {
1076
+ "type": "object",
1077
+ "properties": {
1078
+ "session_id": {
1079
+ "type": "string",
1080
+ "description": "Simulator session ID"
1081
+ },
1082
+ "type": {
1083
+ "type": "string",
1084
+ "enum": [
1085
+ "tap",
1086
+ "double_tap",
1087
+ "long_press",
1088
+ "swipe",
1089
+ "scroll",
1090
+ "type",
1091
+ "key",
1092
+ "screenshot",
1093
+ "install_app",
1094
+ "launch_app",
1095
+ "terminate_app",
1096
+ "open_url",
1097
+ "get_accessibility",
1098
+ "start_recording",
1099
+ "stop_recording",
1100
+ "home",
1101
+ "back",
1102
+ "list_devices"
1103
+ ],
1104
+ "description": "Command type"
1105
+ },
1106
+ "params": {
1107
+ "type": "object",
1108
+ "description": "Command-specific parameters (e.g. {x, y} for tap, {text} for type, {url} for open_url)"
1109
+ },
1110
+ "timeout": {
1111
+ "type": "integer",
1112
+ "description": "Command timeout in ms"
1113
+ }
1114
+ },
1115
+ "required": [
1116
+ "session_id",
1117
+ "type"
1118
+ ]
1119
+ }
1120
+ },
1121
+ {
1122
+ "name": "omnikit_ops_simulator_screenshot",
1123
+ "description": "Capture a screenshot of the current simulator screen. Returns image URL.",
1124
+ "method": "GET",
1125
+ "path": "/simulator/sessions/{session_id}/screenshot",
1126
+ "input_schema": {
1127
+ "type": "object",
1128
+ "properties": {
1129
+ "session_id": {
1130
+ "type": "string",
1131
+ "description": "Simulator session ID"
1132
+ }
1133
+ },
1134
+ "required": [
1135
+ "session_id"
1136
+ ]
1137
+ }
1138
+ },
1139
+ {
1140
+ "name": "omnikit_ops_simulator_pool_status",
1141
+ "description": "Get the status of the simulator pool — available capacity, active sessions, and resource usage",
1142
+ "method": "GET",
1143
+ "path": "/simulator/pool/status",
1144
+ "input_schema": {
1145
+ "type": "object",
1146
+ "properties": {}
1147
+ }
1148
+ }
1149
+ ],
1150
+ "webhooks": {
1151
+ "signature_header": "x-webhook-signature",
1152
+ "events": [
1153
+ {
1154
+ "name": "deployment.succeeded",
1155
+ "description": "Build successfully deployed to environment"
1156
+ },
1157
+ {
1158
+ "name": "deployment.failed",
1159
+ "description": "Deployment failed"
1160
+ },
1161
+ {
1162
+ "name": "deployment.stopped",
1163
+ "description": "Deployment stopped/deleted"
1164
+ },
1165
+ {
1166
+ "name": "domain.created",
1167
+ "description": "Custom domain created"
1168
+ },
1169
+ {
1170
+ "name": "domain.deleted",
1171
+ "description": "Custom domain deleted"
1172
+ },
1173
+ {
1174
+ "name": "pipeline.created",
1175
+ "description": "CI/CD pipeline created"
1176
+ },
1177
+ {
1178
+ "name": "pipeline.triggered",
1179
+ "description": "Pipeline execution triggered"
1180
+ }
1181
+ ]
1182
+ }
1183
+ }