@automate.ax/catalog 0.83.3 → 0.84.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/catalog.d.ts +115 -38
- package/dist/catalog.js +19 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/triggers/index.d.ts +520 -0
- package/dist/triggers/index.js +2 -0
- package/dist/triggers/stripe.d.ts +262 -0
- package/dist/triggers/stripe.js +107 -0
- package/package.json +7 -1
- package/src/catalog.ts +23 -1
- package/src/index.ts +1 -0
- package/src/triggers/index.ts +2 -0
- package/src/triggers/stripe.ts +110 -0
package/dist/catalog.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ export declare const anthropicService: {
|
|
|
13
13
|
readonly id: "anthropic";
|
|
14
14
|
readonly name: string;
|
|
15
15
|
readonly icon?: string | undefined;
|
|
16
|
+
readonly description: string;
|
|
17
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
16
18
|
readonly connectionMethods: readonly [{
|
|
17
19
|
readonly fields: readonly [{
|
|
18
20
|
readonly placeholder: string;
|
|
@@ -26,7 +28,6 @@ export declare const anthropicService: {
|
|
|
26
28
|
readonly type: "form";
|
|
27
29
|
readonly credentialUrl?: string | undefined;
|
|
28
30
|
}];
|
|
29
|
-
readonly description: string;
|
|
30
31
|
};
|
|
31
32
|
export declare const apolloService: {
|
|
32
33
|
readonly connectionMethods: readonly [{
|
|
@@ -64,6 +65,8 @@ export declare const brevoService: {
|
|
|
64
65
|
readonly id: "brevo";
|
|
65
66
|
readonly name: string;
|
|
66
67
|
readonly icon?: string | undefined;
|
|
68
|
+
readonly description: string;
|
|
69
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
67
70
|
readonly connectionMethods: readonly [{
|
|
68
71
|
readonly fields: readonly [{
|
|
69
72
|
readonly placeholder: string;
|
|
@@ -77,12 +80,13 @@ export declare const brevoService: {
|
|
|
77
80
|
readonly type: "form";
|
|
78
81
|
readonly credentialUrl?: string | undefined;
|
|
79
82
|
}];
|
|
80
|
-
readonly description: string;
|
|
81
83
|
};
|
|
82
84
|
export declare const cerebrasService: {
|
|
83
85
|
readonly id: "cerebras";
|
|
84
86
|
readonly name: string;
|
|
85
87
|
readonly icon?: string | undefined;
|
|
88
|
+
readonly description: string;
|
|
89
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
86
90
|
readonly connectionMethods: readonly [{
|
|
87
91
|
readonly fields: readonly [{
|
|
88
92
|
readonly placeholder: string;
|
|
@@ -96,7 +100,6 @@ export declare const cerebrasService: {
|
|
|
96
100
|
readonly type: "form";
|
|
97
101
|
readonly credentialUrl?: string | undefined;
|
|
98
102
|
}];
|
|
99
|
-
readonly description: string;
|
|
100
103
|
};
|
|
101
104
|
export declare const cloudflareService: {
|
|
102
105
|
readonly connectionMethods: readonly [{
|
|
@@ -159,6 +162,8 @@ export declare const cohereService: {
|
|
|
159
162
|
readonly id: "cohere";
|
|
160
163
|
readonly name: string;
|
|
161
164
|
readonly icon?: string | undefined;
|
|
165
|
+
readonly description: string;
|
|
166
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
162
167
|
readonly connectionMethods: readonly [{
|
|
163
168
|
readonly fields: readonly [{
|
|
164
169
|
readonly placeholder: string;
|
|
@@ -172,7 +177,6 @@ export declare const cohereService: {
|
|
|
172
177
|
readonly type: "form";
|
|
173
178
|
readonly credentialUrl?: string | undefined;
|
|
174
179
|
}];
|
|
175
|
-
readonly description: string;
|
|
176
180
|
};
|
|
177
181
|
export declare const convexService: {
|
|
178
182
|
readonly connectionMethods: readonly [{
|
|
@@ -214,6 +218,8 @@ export declare const deepinfraService: {
|
|
|
214
218
|
readonly id: "deepinfra";
|
|
215
219
|
readonly name: string;
|
|
216
220
|
readonly icon?: string | undefined;
|
|
221
|
+
readonly description: string;
|
|
222
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
217
223
|
readonly connectionMethods: readonly [{
|
|
218
224
|
readonly fields: readonly [{
|
|
219
225
|
readonly placeholder: string;
|
|
@@ -227,12 +233,13 @@ export declare const deepinfraService: {
|
|
|
227
233
|
readonly type: "form";
|
|
228
234
|
readonly credentialUrl?: string | undefined;
|
|
229
235
|
}];
|
|
230
|
-
readonly description: string;
|
|
231
236
|
};
|
|
232
237
|
export declare const deepseekService: {
|
|
233
238
|
readonly id: "deepseek";
|
|
234
239
|
readonly name: string;
|
|
235
240
|
readonly icon?: string | undefined;
|
|
241
|
+
readonly description: string;
|
|
242
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
236
243
|
readonly connectionMethods: readonly [{
|
|
237
244
|
readonly fields: readonly [{
|
|
238
245
|
readonly placeholder: string;
|
|
@@ -246,12 +253,13 @@ export declare const deepseekService: {
|
|
|
246
253
|
readonly type: "form";
|
|
247
254
|
readonly credentialUrl?: string | undefined;
|
|
248
255
|
}];
|
|
249
|
-
readonly description: string;
|
|
250
256
|
};
|
|
251
257
|
export declare const firecrawlService: {
|
|
252
258
|
readonly id: "firecrawl";
|
|
253
259
|
readonly name: string;
|
|
254
260
|
readonly icon?: string | undefined;
|
|
261
|
+
readonly description: string;
|
|
262
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
255
263
|
readonly connectionMethods: readonly [{
|
|
256
264
|
readonly fields: readonly [{
|
|
257
265
|
readonly placeholder: string;
|
|
@@ -265,12 +273,13 @@ export declare const firecrawlService: {
|
|
|
265
273
|
readonly type: "form";
|
|
266
274
|
readonly credentialUrl?: string | undefined;
|
|
267
275
|
}];
|
|
268
|
-
readonly description: string;
|
|
269
276
|
};
|
|
270
277
|
export declare const fireworksService: {
|
|
271
278
|
readonly id: "fireworks";
|
|
272
279
|
readonly name: string;
|
|
273
280
|
readonly icon?: string | undefined;
|
|
281
|
+
readonly description: string;
|
|
282
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
274
283
|
readonly connectionMethods: readonly [{
|
|
275
284
|
readonly fields: readonly [{
|
|
276
285
|
readonly placeholder: string;
|
|
@@ -284,7 +293,6 @@ export declare const fireworksService: {
|
|
|
284
293
|
readonly type: "form";
|
|
285
294
|
readonly credentialUrl?: string | undefined;
|
|
286
295
|
}];
|
|
287
|
-
readonly description: string;
|
|
288
296
|
};
|
|
289
297
|
export declare const githubService: {
|
|
290
298
|
readonly connectionMethods: readonly [{
|
|
@@ -318,6 +326,8 @@ export declare const googleGenaiService: {
|
|
|
318
326
|
readonly id: "google-genai";
|
|
319
327
|
readonly name: string;
|
|
320
328
|
readonly icon?: string | undefined;
|
|
329
|
+
readonly description: string;
|
|
330
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
321
331
|
readonly connectionMethods: readonly [{
|
|
322
332
|
readonly fields: readonly [{
|
|
323
333
|
readonly placeholder: string;
|
|
@@ -331,12 +341,13 @@ export declare const googleGenaiService: {
|
|
|
331
341
|
readonly type: "form";
|
|
332
342
|
readonly credentialUrl?: string | undefined;
|
|
333
343
|
}];
|
|
334
|
-
readonly description: string;
|
|
335
344
|
};
|
|
336
345
|
export declare const groqService: {
|
|
337
346
|
readonly id: "groq";
|
|
338
347
|
readonly name: string;
|
|
339
348
|
readonly icon?: string | undefined;
|
|
349
|
+
readonly description: string;
|
|
350
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
340
351
|
readonly connectionMethods: readonly [{
|
|
341
352
|
readonly fields: readonly [{
|
|
342
353
|
readonly placeholder: string;
|
|
@@ -350,7 +361,6 @@ export declare const groqService: {
|
|
|
350
361
|
readonly type: "form";
|
|
351
362
|
readonly credentialUrl?: string | undefined;
|
|
352
363
|
}];
|
|
353
|
-
readonly description: string;
|
|
354
364
|
};
|
|
355
365
|
export declare const huggingfaceService: {
|
|
356
366
|
readonly connectionMethods: readonly [{
|
|
@@ -393,6 +403,8 @@ export declare const millionverifierService: {
|
|
|
393
403
|
readonly id: "millionverifier";
|
|
394
404
|
readonly name: string;
|
|
395
405
|
readonly icon?: string | undefined;
|
|
406
|
+
readonly description: string;
|
|
407
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
396
408
|
readonly connectionMethods: readonly [{
|
|
397
409
|
readonly fields: readonly [{
|
|
398
410
|
readonly placeholder: string;
|
|
@@ -406,12 +418,13 @@ export declare const millionverifierService: {
|
|
|
406
418
|
readonly type: "form";
|
|
407
419
|
readonly credentialUrl?: string | undefined;
|
|
408
420
|
}];
|
|
409
|
-
readonly description: string;
|
|
410
421
|
};
|
|
411
422
|
export declare const mistralService: {
|
|
412
423
|
readonly id: "mistral";
|
|
413
424
|
readonly name: string;
|
|
414
425
|
readonly icon?: string | undefined;
|
|
426
|
+
readonly description: string;
|
|
427
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
415
428
|
readonly connectionMethods: readonly [{
|
|
416
429
|
readonly fields: readonly [{
|
|
417
430
|
readonly placeholder: string;
|
|
@@ -425,12 +438,13 @@ export declare const mistralService: {
|
|
|
425
438
|
readonly type: "form";
|
|
426
439
|
readonly credentialUrl?: string | undefined;
|
|
427
440
|
}];
|
|
428
|
-
readonly description: string;
|
|
429
441
|
};
|
|
430
442
|
export declare const openaiService: {
|
|
431
443
|
readonly id: "openai";
|
|
432
444
|
readonly name: string;
|
|
433
445
|
readonly icon?: string | undefined;
|
|
446
|
+
readonly description: string;
|
|
447
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
434
448
|
readonly connectionMethods: readonly [{
|
|
435
449
|
readonly fields: readonly [{
|
|
436
450
|
readonly placeholder: string;
|
|
@@ -444,12 +458,13 @@ export declare const openaiService: {
|
|
|
444
458
|
readonly type: "form";
|
|
445
459
|
readonly credentialUrl?: string | undefined;
|
|
446
460
|
}];
|
|
447
|
-
readonly description: string;
|
|
448
461
|
};
|
|
449
462
|
export declare const openrouterService: {
|
|
450
463
|
readonly id: "openrouter";
|
|
451
464
|
readonly name: string;
|
|
452
465
|
readonly icon?: string | undefined;
|
|
466
|
+
readonly description: string;
|
|
467
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
453
468
|
readonly connectionMethods: readonly [{
|
|
454
469
|
readonly fields: readonly [{
|
|
455
470
|
readonly placeholder: string;
|
|
@@ -463,12 +478,13 @@ export declare const openrouterService: {
|
|
|
463
478
|
readonly type: "form";
|
|
464
479
|
readonly credentialUrl?: string | undefined;
|
|
465
480
|
}];
|
|
466
|
-
readonly description: string;
|
|
467
481
|
};
|
|
468
482
|
export declare const perplexityService: {
|
|
469
483
|
readonly id: "perplexity";
|
|
470
484
|
readonly name: string;
|
|
471
485
|
readonly icon?: string | undefined;
|
|
486
|
+
readonly description: string;
|
|
487
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
472
488
|
readonly connectionMethods: readonly [{
|
|
473
489
|
readonly fields: readonly [{
|
|
474
490
|
readonly placeholder: string;
|
|
@@ -482,7 +498,6 @@ export declare const perplexityService: {
|
|
|
482
498
|
readonly type: "form";
|
|
483
499
|
readonly credentialUrl?: string | undefined;
|
|
484
500
|
}];
|
|
485
|
-
readonly description: string;
|
|
486
501
|
};
|
|
487
502
|
export declare const postgresService: {
|
|
488
503
|
readonly connectionMethods: readonly [{
|
|
@@ -528,6 +543,8 @@ export declare const scrapflyService: {
|
|
|
528
543
|
readonly id: "scrapfly";
|
|
529
544
|
readonly name: string;
|
|
530
545
|
readonly icon?: string | undefined;
|
|
546
|
+
readonly description: string;
|
|
547
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
531
548
|
readonly connectionMethods: readonly [{
|
|
532
549
|
readonly fields: readonly [{
|
|
533
550
|
readonly placeholder: string;
|
|
@@ -541,7 +558,6 @@ export declare const scrapflyService: {
|
|
|
541
558
|
readonly type: "form";
|
|
542
559
|
readonly credentialUrl?: string | undefined;
|
|
543
560
|
}];
|
|
544
|
-
readonly description: string;
|
|
545
561
|
};
|
|
546
562
|
export declare const slackService: {
|
|
547
563
|
readonly connectionMethods: readonly [{
|
|
@@ -553,6 +569,26 @@ export declare const slackService: {
|
|
|
553
569
|
readonly id: "slack";
|
|
554
570
|
readonly name: "Slack";
|
|
555
571
|
};
|
|
572
|
+
export declare const stripeService: {
|
|
573
|
+
readonly id: "stripe";
|
|
574
|
+
readonly name: string;
|
|
575
|
+
readonly icon?: string | undefined;
|
|
576
|
+
readonly description: string;
|
|
577
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
578
|
+
readonly connectionMethods: readonly [{
|
|
579
|
+
readonly fields: readonly [{
|
|
580
|
+
readonly placeholder: string;
|
|
581
|
+
readonly input: "password";
|
|
582
|
+
readonly label: "API key";
|
|
583
|
+
readonly name: "apiKey";
|
|
584
|
+
readonly required: true;
|
|
585
|
+
}];
|
|
586
|
+
readonly id: "api-key";
|
|
587
|
+
readonly name: "API key";
|
|
588
|
+
readonly type: "form";
|
|
589
|
+
readonly credentialUrl?: string | undefined;
|
|
590
|
+
}];
|
|
591
|
+
};
|
|
556
592
|
export declare const tidycalService: {
|
|
557
593
|
readonly connectionMethods: readonly [{
|
|
558
594
|
readonly id: "oauth";
|
|
@@ -567,6 +603,8 @@ export declare const togetheraiService: {
|
|
|
567
603
|
readonly id: "togetherai";
|
|
568
604
|
readonly name: string;
|
|
569
605
|
readonly icon?: string | undefined;
|
|
606
|
+
readonly description: string;
|
|
607
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
570
608
|
readonly connectionMethods: readonly [{
|
|
571
609
|
readonly fields: readonly [{
|
|
572
610
|
readonly placeholder: string;
|
|
@@ -580,7 +618,6 @@ export declare const togetheraiService: {
|
|
|
580
618
|
readonly type: "form";
|
|
581
619
|
readonly credentialUrl?: string | undefined;
|
|
582
620
|
}];
|
|
583
|
-
readonly description: string;
|
|
584
621
|
};
|
|
585
622
|
export declare const trelloService: {
|
|
586
623
|
readonly connectionMethods: readonly [{
|
|
@@ -596,6 +633,8 @@ export declare const vercelAiGatewayService: {
|
|
|
596
633
|
readonly id: "vercel-ai-gateway";
|
|
597
634
|
readonly name: string;
|
|
598
635
|
readonly icon?: string | undefined;
|
|
636
|
+
readonly description: string;
|
|
637
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
599
638
|
readonly connectionMethods: readonly [{
|
|
600
639
|
readonly fields: readonly [{
|
|
601
640
|
readonly placeholder: string;
|
|
@@ -609,7 +648,6 @@ export declare const vercelAiGatewayService: {
|
|
|
609
648
|
readonly type: "form";
|
|
610
649
|
readonly credentialUrl?: string | undefined;
|
|
611
650
|
}];
|
|
612
|
-
readonly description: string;
|
|
613
651
|
};
|
|
614
652
|
export declare const vercelService: {
|
|
615
653
|
readonly connectionMethods: readonly [{
|
|
@@ -647,6 +685,8 @@ export declare const xaiService: {
|
|
|
647
685
|
readonly id: "xai";
|
|
648
686
|
readonly name: string;
|
|
649
687
|
readonly icon?: string | undefined;
|
|
688
|
+
readonly description: string;
|
|
689
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
650
690
|
readonly connectionMethods: readonly [{
|
|
651
691
|
readonly fields: readonly [{
|
|
652
692
|
readonly placeholder: string;
|
|
@@ -660,7 +700,6 @@ export declare const xaiService: {
|
|
|
660
700
|
readonly type: "form";
|
|
661
701
|
readonly credentialUrl?: string | undefined;
|
|
662
702
|
}];
|
|
663
|
-
readonly description: string;
|
|
664
703
|
};
|
|
665
704
|
export declare const integrationCatalog: readonly [{
|
|
666
705
|
readonly connectionMethods: readonly [{
|
|
@@ -675,6 +714,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
675
714
|
readonly id: "anthropic";
|
|
676
715
|
readonly name: string;
|
|
677
716
|
readonly icon?: string | undefined;
|
|
717
|
+
readonly description: string;
|
|
718
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
678
719
|
readonly connectionMethods: readonly [{
|
|
679
720
|
readonly fields: readonly [{
|
|
680
721
|
readonly placeholder: string;
|
|
@@ -688,7 +729,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
688
729
|
readonly type: "form";
|
|
689
730
|
readonly credentialUrl?: string | undefined;
|
|
690
731
|
}];
|
|
691
|
-
readonly description: string;
|
|
692
732
|
}, {
|
|
693
733
|
readonly connectionMethods: readonly [{
|
|
694
734
|
readonly id: "oauth";
|
|
@@ -723,6 +763,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
723
763
|
readonly id: "brevo";
|
|
724
764
|
readonly name: string;
|
|
725
765
|
readonly icon?: string | undefined;
|
|
766
|
+
readonly description: string;
|
|
767
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
726
768
|
readonly connectionMethods: readonly [{
|
|
727
769
|
readonly fields: readonly [{
|
|
728
770
|
readonly placeholder: string;
|
|
@@ -736,11 +778,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
736
778
|
readonly type: "form";
|
|
737
779
|
readonly credentialUrl?: string | undefined;
|
|
738
780
|
}];
|
|
739
|
-
readonly description: string;
|
|
740
781
|
}, {
|
|
741
782
|
readonly id: "cerebras";
|
|
742
783
|
readonly name: string;
|
|
743
784
|
readonly icon?: string | undefined;
|
|
785
|
+
readonly description: string;
|
|
786
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
744
787
|
readonly connectionMethods: readonly [{
|
|
745
788
|
readonly fields: readonly [{
|
|
746
789
|
readonly placeholder: string;
|
|
@@ -754,7 +797,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
754
797
|
readonly type: "form";
|
|
755
798
|
readonly credentialUrl?: string | undefined;
|
|
756
799
|
}];
|
|
757
|
-
readonly description: string;
|
|
758
800
|
}, {
|
|
759
801
|
readonly connectionMethods: readonly [{
|
|
760
802
|
readonly fields: readonly [{
|
|
@@ -813,6 +855,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
813
855
|
readonly id: "cohere";
|
|
814
856
|
readonly name: string;
|
|
815
857
|
readonly icon?: string | undefined;
|
|
858
|
+
readonly description: string;
|
|
859
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
816
860
|
readonly connectionMethods: readonly [{
|
|
817
861
|
readonly fields: readonly [{
|
|
818
862
|
readonly placeholder: string;
|
|
@@ -826,7 +870,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
826
870
|
readonly type: "form";
|
|
827
871
|
readonly credentialUrl?: string | undefined;
|
|
828
872
|
}];
|
|
829
|
-
readonly description: string;
|
|
830
873
|
}, {
|
|
831
874
|
readonly connectionMethods: readonly [{
|
|
832
875
|
readonly id: "oauth";
|
|
@@ -866,6 +909,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
866
909
|
readonly id: "deepinfra";
|
|
867
910
|
readonly name: string;
|
|
868
911
|
readonly icon?: string | undefined;
|
|
912
|
+
readonly description: string;
|
|
913
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
869
914
|
readonly connectionMethods: readonly [{
|
|
870
915
|
readonly fields: readonly [{
|
|
871
916
|
readonly placeholder: string;
|
|
@@ -879,11 +924,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
879
924
|
readonly type: "form";
|
|
880
925
|
readonly credentialUrl?: string | undefined;
|
|
881
926
|
}];
|
|
882
|
-
readonly description: string;
|
|
883
927
|
}, {
|
|
884
928
|
readonly id: "deepseek";
|
|
885
929
|
readonly name: string;
|
|
886
930
|
readonly icon?: string | undefined;
|
|
931
|
+
readonly description: string;
|
|
932
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
887
933
|
readonly connectionMethods: readonly [{
|
|
888
934
|
readonly fields: readonly [{
|
|
889
935
|
readonly placeholder: string;
|
|
@@ -897,11 +943,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
897
943
|
readonly type: "form";
|
|
898
944
|
readonly credentialUrl?: string | undefined;
|
|
899
945
|
}];
|
|
900
|
-
readonly description: string;
|
|
901
946
|
}, {
|
|
902
947
|
readonly id: "firecrawl";
|
|
903
948
|
readonly name: string;
|
|
904
949
|
readonly icon?: string | undefined;
|
|
950
|
+
readonly description: string;
|
|
951
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
905
952
|
readonly connectionMethods: readonly [{
|
|
906
953
|
readonly fields: readonly [{
|
|
907
954
|
readonly placeholder: string;
|
|
@@ -915,11 +962,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
915
962
|
readonly type: "form";
|
|
916
963
|
readonly credentialUrl?: string | undefined;
|
|
917
964
|
}];
|
|
918
|
-
readonly description: string;
|
|
919
965
|
}, {
|
|
920
966
|
readonly id: "fireworks";
|
|
921
967
|
readonly name: string;
|
|
922
968
|
readonly icon?: string | undefined;
|
|
969
|
+
readonly description: string;
|
|
970
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
923
971
|
readonly connectionMethods: readonly [{
|
|
924
972
|
readonly fields: readonly [{
|
|
925
973
|
readonly placeholder: string;
|
|
@@ -933,7 +981,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
933
981
|
readonly type: "form";
|
|
934
982
|
readonly credentialUrl?: string | undefined;
|
|
935
983
|
}];
|
|
936
|
-
readonly description: string;
|
|
937
984
|
}, {
|
|
938
985
|
readonly connectionMethods: readonly [{
|
|
939
986
|
readonly id: "github-app";
|
|
@@ -964,6 +1011,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
964
1011
|
readonly id: "google-genai";
|
|
965
1012
|
readonly name: string;
|
|
966
1013
|
readonly icon?: string | undefined;
|
|
1014
|
+
readonly description: string;
|
|
1015
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
967
1016
|
readonly connectionMethods: readonly [{
|
|
968
1017
|
readonly fields: readonly [{
|
|
969
1018
|
readonly placeholder: string;
|
|
@@ -977,11 +1026,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
977
1026
|
readonly type: "form";
|
|
978
1027
|
readonly credentialUrl?: string | undefined;
|
|
979
1028
|
}];
|
|
980
|
-
readonly description: string;
|
|
981
1029
|
}, {
|
|
982
1030
|
readonly id: "groq";
|
|
983
1031
|
readonly name: string;
|
|
984
1032
|
readonly icon?: string | undefined;
|
|
1033
|
+
readonly description: string;
|
|
1034
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
985
1035
|
readonly connectionMethods: readonly [{
|
|
986
1036
|
readonly fields: readonly [{
|
|
987
1037
|
readonly placeholder: string;
|
|
@@ -995,7 +1045,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
995
1045
|
readonly type: "form";
|
|
996
1046
|
readonly credentialUrl?: string | undefined;
|
|
997
1047
|
}];
|
|
998
|
-
readonly description: string;
|
|
999
1048
|
}, {
|
|
1000
1049
|
readonly connectionMethods: readonly [{
|
|
1001
1050
|
readonly fields: readonly [{
|
|
@@ -1034,6 +1083,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
1034
1083
|
readonly id: "millionverifier";
|
|
1035
1084
|
readonly name: string;
|
|
1036
1085
|
readonly icon?: string | undefined;
|
|
1086
|
+
readonly description: string;
|
|
1087
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1037
1088
|
readonly connectionMethods: readonly [{
|
|
1038
1089
|
readonly fields: readonly [{
|
|
1039
1090
|
readonly placeholder: string;
|
|
@@ -1047,11 +1098,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
1047
1098
|
readonly type: "form";
|
|
1048
1099
|
readonly credentialUrl?: string | undefined;
|
|
1049
1100
|
}];
|
|
1050
|
-
readonly description: string;
|
|
1051
1101
|
}, {
|
|
1052
1102
|
readonly id: "mistral";
|
|
1053
1103
|
readonly name: string;
|
|
1054
1104
|
readonly icon?: string | undefined;
|
|
1105
|
+
readonly description: string;
|
|
1106
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1055
1107
|
readonly connectionMethods: readonly [{
|
|
1056
1108
|
readonly fields: readonly [{
|
|
1057
1109
|
readonly placeholder: string;
|
|
@@ -1065,11 +1117,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
1065
1117
|
readonly type: "form";
|
|
1066
1118
|
readonly credentialUrl?: string | undefined;
|
|
1067
1119
|
}];
|
|
1068
|
-
readonly description: string;
|
|
1069
1120
|
}, {
|
|
1070
1121
|
readonly id: "openai";
|
|
1071
1122
|
readonly name: string;
|
|
1072
1123
|
readonly icon?: string | undefined;
|
|
1124
|
+
readonly description: string;
|
|
1125
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1073
1126
|
readonly connectionMethods: readonly [{
|
|
1074
1127
|
readonly fields: readonly [{
|
|
1075
1128
|
readonly placeholder: string;
|
|
@@ -1083,11 +1136,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
1083
1136
|
readonly type: "form";
|
|
1084
1137
|
readonly credentialUrl?: string | undefined;
|
|
1085
1138
|
}];
|
|
1086
|
-
readonly description: string;
|
|
1087
1139
|
}, {
|
|
1088
1140
|
readonly id: "openrouter";
|
|
1089
1141
|
readonly name: string;
|
|
1090
1142
|
readonly icon?: string | undefined;
|
|
1143
|
+
readonly description: string;
|
|
1144
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1091
1145
|
readonly connectionMethods: readonly [{
|
|
1092
1146
|
readonly fields: readonly [{
|
|
1093
1147
|
readonly placeholder: string;
|
|
@@ -1101,11 +1155,12 @@ export declare const integrationCatalog: readonly [{
|
|
|
1101
1155
|
readonly type: "form";
|
|
1102
1156
|
readonly credentialUrl?: string | undefined;
|
|
1103
1157
|
}];
|
|
1104
|
-
readonly description: string;
|
|
1105
1158
|
}, {
|
|
1106
1159
|
readonly id: "perplexity";
|
|
1107
1160
|
readonly name: string;
|
|
1108
1161
|
readonly icon?: string | undefined;
|
|
1162
|
+
readonly description: string;
|
|
1163
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1109
1164
|
readonly connectionMethods: readonly [{
|
|
1110
1165
|
readonly fields: readonly [{
|
|
1111
1166
|
readonly placeholder: string;
|
|
@@ -1119,7 +1174,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
1119
1174
|
readonly type: "form";
|
|
1120
1175
|
readonly credentialUrl?: string | undefined;
|
|
1121
1176
|
}];
|
|
1122
|
-
readonly description: string;
|
|
1123
1177
|
}, {
|
|
1124
1178
|
readonly connectionMethods: readonly [{
|
|
1125
1179
|
readonly fields: readonly [{
|
|
@@ -1162,6 +1216,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
1162
1216
|
readonly id: "scrapfly";
|
|
1163
1217
|
readonly name: string;
|
|
1164
1218
|
readonly icon?: string | undefined;
|
|
1219
|
+
readonly description: string;
|
|
1220
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1165
1221
|
readonly connectionMethods: readonly [{
|
|
1166
1222
|
readonly fields: readonly [{
|
|
1167
1223
|
readonly placeholder: string;
|
|
@@ -1175,7 +1231,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
1175
1231
|
readonly type: "form";
|
|
1176
1232
|
readonly credentialUrl?: string | undefined;
|
|
1177
1233
|
}];
|
|
1178
|
-
readonly description: string;
|
|
1179
1234
|
}, {
|
|
1180
1235
|
readonly connectionMethods: readonly [{
|
|
1181
1236
|
readonly id: "oauth";
|
|
@@ -1185,6 +1240,25 @@ export declare const integrationCatalog: readonly [{
|
|
|
1185
1240
|
readonly description: "Install the Automate.ax bot in a Slack workspace.";
|
|
1186
1241
|
readonly id: "slack";
|
|
1187
1242
|
readonly name: "Slack";
|
|
1243
|
+
}, {
|
|
1244
|
+
readonly id: "stripe";
|
|
1245
|
+
readonly name: string;
|
|
1246
|
+
readonly icon?: string | undefined;
|
|
1247
|
+
readonly description: string;
|
|
1248
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1249
|
+
readonly connectionMethods: readonly [{
|
|
1250
|
+
readonly fields: readonly [{
|
|
1251
|
+
readonly placeholder: string;
|
|
1252
|
+
readonly input: "password";
|
|
1253
|
+
readonly label: "API key";
|
|
1254
|
+
readonly name: "apiKey";
|
|
1255
|
+
readonly required: true;
|
|
1256
|
+
}];
|
|
1257
|
+
readonly id: "api-key";
|
|
1258
|
+
readonly name: "API key";
|
|
1259
|
+
readonly type: "form";
|
|
1260
|
+
readonly credentialUrl?: string | undefined;
|
|
1261
|
+
}];
|
|
1188
1262
|
}, {
|
|
1189
1263
|
readonly connectionMethods: readonly [{
|
|
1190
1264
|
readonly id: "oauth";
|
|
@@ -1198,6 +1272,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
1198
1272
|
readonly id: "togetherai";
|
|
1199
1273
|
readonly name: string;
|
|
1200
1274
|
readonly icon?: string | undefined;
|
|
1275
|
+
readonly description: string;
|
|
1276
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1201
1277
|
readonly connectionMethods: readonly [{
|
|
1202
1278
|
readonly fields: readonly [{
|
|
1203
1279
|
readonly placeholder: string;
|
|
@@ -1211,7 +1287,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
1211
1287
|
readonly type: "form";
|
|
1212
1288
|
readonly credentialUrl?: string | undefined;
|
|
1213
1289
|
}];
|
|
1214
|
-
readonly description: string;
|
|
1215
1290
|
}, {
|
|
1216
1291
|
readonly connectionMethods: readonly [{
|
|
1217
1292
|
readonly id: "oauth";
|
|
@@ -1225,6 +1300,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
1225
1300
|
readonly id: "vercel-ai-gateway";
|
|
1226
1301
|
readonly name: string;
|
|
1227
1302
|
readonly icon?: string | undefined;
|
|
1303
|
+
readonly description: string;
|
|
1304
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1228
1305
|
readonly connectionMethods: readonly [{
|
|
1229
1306
|
readonly fields: readonly [{
|
|
1230
1307
|
readonly placeholder: string;
|
|
@@ -1238,7 +1315,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
1238
1315
|
readonly type: "form";
|
|
1239
1316
|
readonly credentialUrl?: string | undefined;
|
|
1240
1317
|
}];
|
|
1241
|
-
readonly description: string;
|
|
1242
1318
|
}, {
|
|
1243
1319
|
readonly connectionMethods: readonly [{
|
|
1244
1320
|
readonly id: "oauth";
|
|
@@ -1273,6 +1349,8 @@ export declare const integrationCatalog: readonly [{
|
|
|
1273
1349
|
readonly id: "xai";
|
|
1274
1350
|
readonly name: string;
|
|
1275
1351
|
readonly icon?: string | undefined;
|
|
1352
|
+
readonly description: string;
|
|
1353
|
+
readonly connectionNotice?: import("./types").IntegrationConnectionNotice | undefined;
|
|
1276
1354
|
readonly connectionMethods: readonly [{
|
|
1277
1355
|
readonly fields: readonly [{
|
|
1278
1356
|
readonly placeholder: string;
|
|
@@ -1286,7 +1364,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
1286
1364
|
readonly type: "form";
|
|
1287
1365
|
readonly credentialUrl?: string | undefined;
|
|
1288
1366
|
}];
|
|
1289
|
-
readonly description: string;
|
|
1290
1367
|
}];
|
|
1291
1368
|
export type IntegrationServiceId = (typeof integrationCatalog)[number]["id"];
|
|
1292
1369
|
/**
|
package/dist/catalog.js
CHANGED
|
@@ -322,6 +322,21 @@ export const slackService = defineIntegrationService({
|
|
|
322
322
|
id: "slack",
|
|
323
323
|
name: "Slack",
|
|
324
324
|
});
|
|
325
|
+
export const stripeService = defineApiKeyService({
|
|
326
|
+
connectionNotice: {
|
|
327
|
+
action: {
|
|
328
|
+
href: "https://docs.stripe.com/keys#limit-access",
|
|
329
|
+
label: "Review permissions",
|
|
330
|
+
},
|
|
331
|
+
description: "Restricted keys need read access to Account for connection checks. Managed triggers also need write access to Webhook Endpoints.",
|
|
332
|
+
title: "Stripe restricted-key permissions",
|
|
333
|
+
},
|
|
334
|
+
credentialUrl: "https://dashboard.stripe.com/apikeys",
|
|
335
|
+
description: "Connect a Stripe account with a secret or restricted API key.",
|
|
336
|
+
id: "stripe",
|
|
337
|
+
name: "Stripe",
|
|
338
|
+
placeholder: "sk_test_... or rk_test_...",
|
|
339
|
+
});
|
|
325
340
|
export const tidycalService = defineIntegrationService({
|
|
326
341
|
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
327
342
|
description: "Connect a TidyCal account.",
|
|
@@ -414,6 +429,7 @@ export const integrationCatalog = defineIntegrationCatalog([
|
|
|
414
429
|
resendService,
|
|
415
430
|
scrapflyService,
|
|
416
431
|
slackService,
|
|
432
|
+
stripeService,
|
|
417
433
|
tidycalService,
|
|
418
434
|
togetheraiService,
|
|
419
435
|
trelloService,
|
|
@@ -453,6 +469,9 @@ function defineApiKeyService(service) {
|
|
|
453
469
|
type: "form",
|
|
454
470
|
},
|
|
455
471
|
],
|
|
472
|
+
...(service.connectionNotice
|
|
473
|
+
? { connectionNotice: service.connectionNotice }
|
|
474
|
+
: {}),
|
|
456
475
|
description: service.description,
|
|
457
476
|
...(service.icon ? { icon: service.icon } : {}),
|
|
458
477
|
id: service.id,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, type IntegrationAccountConnectionOption, type IntegrationAccountRequirement, type IntegrationConnectionDefinition, type IntegrationConnectionNotice, type IntegrationFormField, type IntegrationScopeRequirement, type IntegrationServiceDefinition, type ScopeRequirementGroup, type TriggerDefinition, type TriggerPresentation, type TriggerPresentationContext, type TriggerPresentationDetail, type TriggerScopePresentation, type TriggerPresentationValue, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, type DashboardRunConfig, type DashboardRunEndpointOptions, type DashboardRunField, type HttpTriggerEndpointOptions, type HttpTriggerScope, type MailhookAddressOptions, type MailhookScope, type TriggerType, } from "./triggers/index.js";
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, } from "./triggers/index.js";
|