@automate.ax/catalog 0.83.3 → 0.85.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 +134 -38
- package/dist/catalog.js +26 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/triggers/index.d.ts +640 -0
- package/dist/triggers/index.js +4 -0
- package/dist/triggers/stripe.d.ts +262 -0
- package/dist/triggers/stripe.js +107 -0
- package/dist/triggers/webflow.d.ts +63 -0
- package/dist/triggers/webflow.js +86 -0
- package/package.json +14 -2
- package/src/catalog.ts +31 -1
- package/src/index.ts +2 -0
- package/src/triggers/index.ts +4 -0
- package/src/triggers/stripe.ts +110 -0
- package/src/triggers/webflow.ts +92 -0
package/dist/triggers/index.d.ts
CHANGED
|
@@ -65,6 +65,66 @@ export declare const triggerDefinitions: {
|
|
|
65
65
|
};
|
|
66
66
|
readonly type: "whatsapp.message.statusEvent";
|
|
67
67
|
};
|
|
68
|
+
readonly webflowCollectionItemChanged: {
|
|
69
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
70
|
+
readonly type: "webflow.collectionItem.changed";
|
|
71
|
+
};
|
|
72
|
+
readonly webflowCollectionItemCreated: {
|
|
73
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
74
|
+
readonly type: "webflow.collectionItem.created";
|
|
75
|
+
};
|
|
76
|
+
readonly webflowCollectionItemDeleted: {
|
|
77
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
78
|
+
readonly type: "webflow.collectionItem.deleted";
|
|
79
|
+
};
|
|
80
|
+
readonly webflowCollectionItemPublished: {
|
|
81
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
82
|
+
readonly type: "webflow.collectionItem.published";
|
|
83
|
+
};
|
|
84
|
+
readonly webflowCollectionItemUnpublished: {
|
|
85
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
86
|
+
readonly type: "webflow.collectionItem.unpublished";
|
|
87
|
+
};
|
|
88
|
+
readonly webflowCommentCreated: {
|
|
89
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
90
|
+
readonly type: "webflow.comment.created";
|
|
91
|
+
};
|
|
92
|
+
readonly webflowEvent: {
|
|
93
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
94
|
+
readonly type: "webflow.event";
|
|
95
|
+
};
|
|
96
|
+
readonly webflowFormSubmitted: {
|
|
97
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
98
|
+
readonly type: "webflow.form.submitted";
|
|
99
|
+
};
|
|
100
|
+
readonly webflowInventoryChanged: {
|
|
101
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
102
|
+
readonly type: "webflow.inventory.changed";
|
|
103
|
+
};
|
|
104
|
+
readonly webflowOrderChanged: {
|
|
105
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
106
|
+
readonly type: "webflow.order.changed";
|
|
107
|
+
};
|
|
108
|
+
readonly webflowOrderCreated: {
|
|
109
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
110
|
+
readonly type: "webflow.order.created";
|
|
111
|
+
};
|
|
112
|
+
readonly webflowPageCreated: {
|
|
113
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
114
|
+
readonly type: "webflow.page.created";
|
|
115
|
+
};
|
|
116
|
+
readonly webflowPageDeleted: {
|
|
117
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
118
|
+
readonly type: "webflow.page.deleted";
|
|
119
|
+
};
|
|
120
|
+
readonly webflowPageMetadataUpdated: {
|
|
121
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
122
|
+
readonly type: "webflow.page.metadataUpdated";
|
|
123
|
+
};
|
|
124
|
+
readonly webflowSitePublished: {
|
|
125
|
+
readonly account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
126
|
+
readonly type: "webflow.site.published";
|
|
127
|
+
};
|
|
68
128
|
readonly vercelDeployment: {
|
|
69
129
|
readonly account: {
|
|
70
130
|
readonly connectionOptions: readonly [{
|
|
@@ -396,6 +456,266 @@ export declare const triggerDefinitions: {
|
|
|
396
456
|
};
|
|
397
457
|
readonly type: "trello.card.updated";
|
|
398
458
|
};
|
|
459
|
+
readonly stripeChargeDisputeClosed: {
|
|
460
|
+
readonly account: {
|
|
461
|
+
readonly connectionOptions: readonly [{
|
|
462
|
+
readonly connectionMethodId: "api-key";
|
|
463
|
+
readonly requiredScopes: readonly [];
|
|
464
|
+
}];
|
|
465
|
+
readonly serviceId: "stripe";
|
|
466
|
+
};
|
|
467
|
+
readonly type: "stripe.charge.dispute.closed";
|
|
468
|
+
};
|
|
469
|
+
readonly stripeChargeDisputeCreated: {
|
|
470
|
+
readonly account: {
|
|
471
|
+
readonly connectionOptions: readonly [{
|
|
472
|
+
readonly connectionMethodId: "api-key";
|
|
473
|
+
readonly requiredScopes: readonly [];
|
|
474
|
+
}];
|
|
475
|
+
readonly serviceId: "stripe";
|
|
476
|
+
};
|
|
477
|
+
readonly type: "stripe.charge.dispute.created";
|
|
478
|
+
};
|
|
479
|
+
readonly stripeCheckoutSessionCompleted: {
|
|
480
|
+
readonly account: {
|
|
481
|
+
readonly connectionOptions: readonly [{
|
|
482
|
+
readonly connectionMethodId: "api-key";
|
|
483
|
+
readonly requiredScopes: readonly [];
|
|
484
|
+
}];
|
|
485
|
+
readonly serviceId: "stripe";
|
|
486
|
+
};
|
|
487
|
+
readonly type: "stripe.checkout.session.completed";
|
|
488
|
+
};
|
|
489
|
+
readonly stripeCheckoutSessionAsyncPaymentFailed: {
|
|
490
|
+
readonly account: {
|
|
491
|
+
readonly connectionOptions: readonly [{
|
|
492
|
+
readonly connectionMethodId: "api-key";
|
|
493
|
+
readonly requiredScopes: readonly [];
|
|
494
|
+
}];
|
|
495
|
+
readonly serviceId: "stripe";
|
|
496
|
+
};
|
|
497
|
+
readonly type: "stripe.checkout.session.asyncPaymentFailed";
|
|
498
|
+
};
|
|
499
|
+
readonly stripeCheckoutSessionAsyncPaymentSucceeded: {
|
|
500
|
+
readonly account: {
|
|
501
|
+
readonly connectionOptions: readonly [{
|
|
502
|
+
readonly connectionMethodId: "api-key";
|
|
503
|
+
readonly requiredScopes: readonly [];
|
|
504
|
+
}];
|
|
505
|
+
readonly serviceId: "stripe";
|
|
506
|
+
};
|
|
507
|
+
readonly type: "stripe.checkout.session.asyncPaymentSucceeded";
|
|
508
|
+
};
|
|
509
|
+
readonly stripeCheckoutSessionExpired: {
|
|
510
|
+
readonly account: {
|
|
511
|
+
readonly connectionOptions: readonly [{
|
|
512
|
+
readonly connectionMethodId: "api-key";
|
|
513
|
+
readonly requiredScopes: readonly [];
|
|
514
|
+
}];
|
|
515
|
+
readonly serviceId: "stripe";
|
|
516
|
+
};
|
|
517
|
+
readonly type: "stripe.checkout.session.expired";
|
|
518
|
+
};
|
|
519
|
+
readonly stripeCustomerCreated: {
|
|
520
|
+
readonly account: {
|
|
521
|
+
readonly connectionOptions: readonly [{
|
|
522
|
+
readonly connectionMethodId: "api-key";
|
|
523
|
+
readonly requiredScopes: readonly [];
|
|
524
|
+
}];
|
|
525
|
+
readonly serviceId: "stripe";
|
|
526
|
+
};
|
|
527
|
+
readonly type: "stripe.customer.created";
|
|
528
|
+
};
|
|
529
|
+
readonly stripeCustomerDeleted: {
|
|
530
|
+
readonly account: {
|
|
531
|
+
readonly connectionOptions: readonly [{
|
|
532
|
+
readonly connectionMethodId: "api-key";
|
|
533
|
+
readonly requiredScopes: readonly [];
|
|
534
|
+
}];
|
|
535
|
+
readonly serviceId: "stripe";
|
|
536
|
+
};
|
|
537
|
+
readonly type: "stripe.customer.deleted";
|
|
538
|
+
};
|
|
539
|
+
readonly stripeCustomerSubscriptionCreated: {
|
|
540
|
+
readonly account: {
|
|
541
|
+
readonly connectionOptions: readonly [{
|
|
542
|
+
readonly connectionMethodId: "api-key";
|
|
543
|
+
readonly requiredScopes: readonly [];
|
|
544
|
+
}];
|
|
545
|
+
readonly serviceId: "stripe";
|
|
546
|
+
};
|
|
547
|
+
readonly type: "stripe.customer.subscription.created";
|
|
548
|
+
};
|
|
549
|
+
readonly stripeCustomerSubscriptionDeleted: {
|
|
550
|
+
readonly account: {
|
|
551
|
+
readonly connectionOptions: readonly [{
|
|
552
|
+
readonly connectionMethodId: "api-key";
|
|
553
|
+
readonly requiredScopes: readonly [];
|
|
554
|
+
}];
|
|
555
|
+
readonly serviceId: "stripe";
|
|
556
|
+
};
|
|
557
|
+
readonly type: "stripe.customer.subscription.deleted";
|
|
558
|
+
};
|
|
559
|
+
readonly stripeCustomerSubscriptionTrialWillEnd: {
|
|
560
|
+
readonly account: {
|
|
561
|
+
readonly connectionOptions: readonly [{
|
|
562
|
+
readonly connectionMethodId: "api-key";
|
|
563
|
+
readonly requiredScopes: readonly [];
|
|
564
|
+
}];
|
|
565
|
+
readonly serviceId: "stripe";
|
|
566
|
+
};
|
|
567
|
+
readonly type: "stripe.customer.subscription.trialWillEnd";
|
|
568
|
+
};
|
|
569
|
+
readonly stripeCustomerSubscriptionUpdated: {
|
|
570
|
+
readonly account: {
|
|
571
|
+
readonly connectionOptions: readonly [{
|
|
572
|
+
readonly connectionMethodId: "api-key";
|
|
573
|
+
readonly requiredScopes: readonly [];
|
|
574
|
+
}];
|
|
575
|
+
readonly serviceId: "stripe";
|
|
576
|
+
};
|
|
577
|
+
readonly type: "stripe.customer.subscription.updated";
|
|
578
|
+
};
|
|
579
|
+
readonly stripeCustomerUpdated: {
|
|
580
|
+
readonly account: {
|
|
581
|
+
readonly connectionOptions: readonly [{
|
|
582
|
+
readonly connectionMethodId: "api-key";
|
|
583
|
+
readonly requiredScopes: readonly [];
|
|
584
|
+
}];
|
|
585
|
+
readonly serviceId: "stripe";
|
|
586
|
+
};
|
|
587
|
+
readonly type: "stripe.customer.updated";
|
|
588
|
+
};
|
|
589
|
+
readonly stripeEvent: {
|
|
590
|
+
readonly account: {
|
|
591
|
+
readonly connectionOptions: readonly [{
|
|
592
|
+
readonly connectionMethodId: "api-key";
|
|
593
|
+
readonly requiredScopes: readonly [];
|
|
594
|
+
}];
|
|
595
|
+
readonly serviceId: "stripe";
|
|
596
|
+
};
|
|
597
|
+
readonly type: "stripe.event";
|
|
598
|
+
};
|
|
599
|
+
readonly stripeInvoiceFinalized: {
|
|
600
|
+
readonly account: {
|
|
601
|
+
readonly connectionOptions: readonly [{
|
|
602
|
+
readonly connectionMethodId: "api-key";
|
|
603
|
+
readonly requiredScopes: readonly [];
|
|
604
|
+
}];
|
|
605
|
+
readonly serviceId: "stripe";
|
|
606
|
+
};
|
|
607
|
+
readonly type: "stripe.invoice.finalized";
|
|
608
|
+
};
|
|
609
|
+
readonly stripeInvoiceOverdue: {
|
|
610
|
+
readonly account: {
|
|
611
|
+
readonly connectionOptions: readonly [{
|
|
612
|
+
readonly connectionMethodId: "api-key";
|
|
613
|
+
readonly requiredScopes: readonly [];
|
|
614
|
+
}];
|
|
615
|
+
readonly serviceId: "stripe";
|
|
616
|
+
};
|
|
617
|
+
readonly type: "stripe.invoice.overdue";
|
|
618
|
+
};
|
|
619
|
+
readonly stripeInvoicePaid: {
|
|
620
|
+
readonly account: {
|
|
621
|
+
readonly connectionOptions: readonly [{
|
|
622
|
+
readonly connectionMethodId: "api-key";
|
|
623
|
+
readonly requiredScopes: readonly [];
|
|
624
|
+
}];
|
|
625
|
+
readonly serviceId: "stripe";
|
|
626
|
+
};
|
|
627
|
+
readonly type: "stripe.invoice.paid";
|
|
628
|
+
};
|
|
629
|
+
readonly stripeInvoicePaymentFailed: {
|
|
630
|
+
readonly account: {
|
|
631
|
+
readonly connectionOptions: readonly [{
|
|
632
|
+
readonly connectionMethodId: "api-key";
|
|
633
|
+
readonly requiredScopes: readonly [];
|
|
634
|
+
}];
|
|
635
|
+
readonly serviceId: "stripe";
|
|
636
|
+
};
|
|
637
|
+
readonly type: "stripe.invoice.paymentFailed";
|
|
638
|
+
};
|
|
639
|
+
readonly stripeInvoiceVoided: {
|
|
640
|
+
readonly account: {
|
|
641
|
+
readonly connectionOptions: readonly [{
|
|
642
|
+
readonly connectionMethodId: "api-key";
|
|
643
|
+
readonly requiredScopes: readonly [];
|
|
644
|
+
}];
|
|
645
|
+
readonly serviceId: "stripe";
|
|
646
|
+
};
|
|
647
|
+
readonly type: "stripe.invoice.voided";
|
|
648
|
+
};
|
|
649
|
+
readonly stripePaymentIntentCanceled: {
|
|
650
|
+
readonly account: {
|
|
651
|
+
readonly connectionOptions: readonly [{
|
|
652
|
+
readonly connectionMethodId: "api-key";
|
|
653
|
+
readonly requiredScopes: readonly [];
|
|
654
|
+
}];
|
|
655
|
+
readonly serviceId: "stripe";
|
|
656
|
+
};
|
|
657
|
+
readonly type: "stripe.paymentIntent.canceled";
|
|
658
|
+
};
|
|
659
|
+
readonly stripePaymentIntentPaymentFailed: {
|
|
660
|
+
readonly account: {
|
|
661
|
+
readonly connectionOptions: readonly [{
|
|
662
|
+
readonly connectionMethodId: "api-key";
|
|
663
|
+
readonly requiredScopes: readonly [];
|
|
664
|
+
}];
|
|
665
|
+
readonly serviceId: "stripe";
|
|
666
|
+
};
|
|
667
|
+
readonly type: "stripe.paymentIntent.paymentFailed";
|
|
668
|
+
};
|
|
669
|
+
readonly stripePaymentIntentSucceeded: {
|
|
670
|
+
readonly account: {
|
|
671
|
+
readonly connectionOptions: readonly [{
|
|
672
|
+
readonly connectionMethodId: "api-key";
|
|
673
|
+
readonly requiredScopes: readonly [];
|
|
674
|
+
}];
|
|
675
|
+
readonly serviceId: "stripe";
|
|
676
|
+
};
|
|
677
|
+
readonly type: "stripe.paymentIntent.succeeded";
|
|
678
|
+
};
|
|
679
|
+
readonly stripePayoutFailed: {
|
|
680
|
+
readonly account: {
|
|
681
|
+
readonly connectionOptions: readonly [{
|
|
682
|
+
readonly connectionMethodId: "api-key";
|
|
683
|
+
readonly requiredScopes: readonly [];
|
|
684
|
+
}];
|
|
685
|
+
readonly serviceId: "stripe";
|
|
686
|
+
};
|
|
687
|
+
readonly type: "stripe.payout.failed";
|
|
688
|
+
};
|
|
689
|
+
readonly stripePayoutPaid: {
|
|
690
|
+
readonly account: {
|
|
691
|
+
readonly connectionOptions: readonly [{
|
|
692
|
+
readonly connectionMethodId: "api-key";
|
|
693
|
+
readonly requiredScopes: readonly [];
|
|
694
|
+
}];
|
|
695
|
+
readonly serviceId: "stripe";
|
|
696
|
+
};
|
|
697
|
+
readonly type: "stripe.payout.paid";
|
|
698
|
+
};
|
|
699
|
+
readonly stripeRefundCreated: {
|
|
700
|
+
readonly account: {
|
|
701
|
+
readonly connectionOptions: readonly [{
|
|
702
|
+
readonly connectionMethodId: "api-key";
|
|
703
|
+
readonly requiredScopes: readonly [];
|
|
704
|
+
}];
|
|
705
|
+
readonly serviceId: "stripe";
|
|
706
|
+
};
|
|
707
|
+
readonly type: "stripe.refund.created";
|
|
708
|
+
};
|
|
709
|
+
readonly stripeRefundFailed: {
|
|
710
|
+
readonly account: {
|
|
711
|
+
readonly connectionOptions: readonly [{
|
|
712
|
+
readonly connectionMethodId: "api-key";
|
|
713
|
+
readonly requiredScopes: readonly [];
|
|
714
|
+
}];
|
|
715
|
+
readonly serviceId: "stripe";
|
|
716
|
+
};
|
|
717
|
+
readonly type: "stripe.refund.failed";
|
|
718
|
+
};
|
|
399
719
|
readonly slackAppMentioned: {
|
|
400
720
|
readonly account: {
|
|
401
721
|
readonly connectionOptions: readonly [{
|
|
@@ -2637,6 +2957,266 @@ export declare const triggerCatalog: ({
|
|
|
2637
2957
|
readonly serviceId: "slack";
|
|
2638
2958
|
};
|
|
2639
2959
|
type: "slack.reaction.removed";
|
|
2960
|
+
} | {
|
|
2961
|
+
name: string;
|
|
2962
|
+
account: {
|
|
2963
|
+
readonly connectionOptions: readonly [{
|
|
2964
|
+
readonly connectionMethodId: "api-key";
|
|
2965
|
+
readonly requiredScopes: readonly [];
|
|
2966
|
+
}];
|
|
2967
|
+
readonly serviceId: "stripe";
|
|
2968
|
+
};
|
|
2969
|
+
type: "stripe.charge.dispute.closed";
|
|
2970
|
+
} | {
|
|
2971
|
+
name: string;
|
|
2972
|
+
account: {
|
|
2973
|
+
readonly connectionOptions: readonly [{
|
|
2974
|
+
readonly connectionMethodId: "api-key";
|
|
2975
|
+
readonly requiredScopes: readonly [];
|
|
2976
|
+
}];
|
|
2977
|
+
readonly serviceId: "stripe";
|
|
2978
|
+
};
|
|
2979
|
+
type: "stripe.charge.dispute.created";
|
|
2980
|
+
} | {
|
|
2981
|
+
name: string;
|
|
2982
|
+
account: {
|
|
2983
|
+
readonly connectionOptions: readonly [{
|
|
2984
|
+
readonly connectionMethodId: "api-key";
|
|
2985
|
+
readonly requiredScopes: readonly [];
|
|
2986
|
+
}];
|
|
2987
|
+
readonly serviceId: "stripe";
|
|
2988
|
+
};
|
|
2989
|
+
type: "stripe.checkout.session.completed";
|
|
2990
|
+
} | {
|
|
2991
|
+
name: string;
|
|
2992
|
+
account: {
|
|
2993
|
+
readonly connectionOptions: readonly [{
|
|
2994
|
+
readonly connectionMethodId: "api-key";
|
|
2995
|
+
readonly requiredScopes: readonly [];
|
|
2996
|
+
}];
|
|
2997
|
+
readonly serviceId: "stripe";
|
|
2998
|
+
};
|
|
2999
|
+
type: "stripe.checkout.session.asyncPaymentFailed";
|
|
3000
|
+
} | {
|
|
3001
|
+
name: string;
|
|
3002
|
+
account: {
|
|
3003
|
+
readonly connectionOptions: readonly [{
|
|
3004
|
+
readonly connectionMethodId: "api-key";
|
|
3005
|
+
readonly requiredScopes: readonly [];
|
|
3006
|
+
}];
|
|
3007
|
+
readonly serviceId: "stripe";
|
|
3008
|
+
};
|
|
3009
|
+
type: "stripe.checkout.session.asyncPaymentSucceeded";
|
|
3010
|
+
} | {
|
|
3011
|
+
name: string;
|
|
3012
|
+
account: {
|
|
3013
|
+
readonly connectionOptions: readonly [{
|
|
3014
|
+
readonly connectionMethodId: "api-key";
|
|
3015
|
+
readonly requiredScopes: readonly [];
|
|
3016
|
+
}];
|
|
3017
|
+
readonly serviceId: "stripe";
|
|
3018
|
+
};
|
|
3019
|
+
type: "stripe.checkout.session.expired";
|
|
3020
|
+
} | {
|
|
3021
|
+
name: string;
|
|
3022
|
+
account: {
|
|
3023
|
+
readonly connectionOptions: readonly [{
|
|
3024
|
+
readonly connectionMethodId: "api-key";
|
|
3025
|
+
readonly requiredScopes: readonly [];
|
|
3026
|
+
}];
|
|
3027
|
+
readonly serviceId: "stripe";
|
|
3028
|
+
};
|
|
3029
|
+
type: "stripe.customer.created";
|
|
3030
|
+
} | {
|
|
3031
|
+
name: string;
|
|
3032
|
+
account: {
|
|
3033
|
+
readonly connectionOptions: readonly [{
|
|
3034
|
+
readonly connectionMethodId: "api-key";
|
|
3035
|
+
readonly requiredScopes: readonly [];
|
|
3036
|
+
}];
|
|
3037
|
+
readonly serviceId: "stripe";
|
|
3038
|
+
};
|
|
3039
|
+
type: "stripe.customer.deleted";
|
|
3040
|
+
} | {
|
|
3041
|
+
name: string;
|
|
3042
|
+
account: {
|
|
3043
|
+
readonly connectionOptions: readonly [{
|
|
3044
|
+
readonly connectionMethodId: "api-key";
|
|
3045
|
+
readonly requiredScopes: readonly [];
|
|
3046
|
+
}];
|
|
3047
|
+
readonly serviceId: "stripe";
|
|
3048
|
+
};
|
|
3049
|
+
type: "stripe.customer.subscription.created";
|
|
3050
|
+
} | {
|
|
3051
|
+
name: string;
|
|
3052
|
+
account: {
|
|
3053
|
+
readonly connectionOptions: readonly [{
|
|
3054
|
+
readonly connectionMethodId: "api-key";
|
|
3055
|
+
readonly requiredScopes: readonly [];
|
|
3056
|
+
}];
|
|
3057
|
+
readonly serviceId: "stripe";
|
|
3058
|
+
};
|
|
3059
|
+
type: "stripe.customer.subscription.deleted";
|
|
3060
|
+
} | {
|
|
3061
|
+
name: string;
|
|
3062
|
+
account: {
|
|
3063
|
+
readonly connectionOptions: readonly [{
|
|
3064
|
+
readonly connectionMethodId: "api-key";
|
|
3065
|
+
readonly requiredScopes: readonly [];
|
|
3066
|
+
}];
|
|
3067
|
+
readonly serviceId: "stripe";
|
|
3068
|
+
};
|
|
3069
|
+
type: "stripe.customer.subscription.trialWillEnd";
|
|
3070
|
+
} | {
|
|
3071
|
+
name: string;
|
|
3072
|
+
account: {
|
|
3073
|
+
readonly connectionOptions: readonly [{
|
|
3074
|
+
readonly connectionMethodId: "api-key";
|
|
3075
|
+
readonly requiredScopes: readonly [];
|
|
3076
|
+
}];
|
|
3077
|
+
readonly serviceId: "stripe";
|
|
3078
|
+
};
|
|
3079
|
+
type: "stripe.customer.subscription.updated";
|
|
3080
|
+
} | {
|
|
3081
|
+
name: string;
|
|
3082
|
+
account: {
|
|
3083
|
+
readonly connectionOptions: readonly [{
|
|
3084
|
+
readonly connectionMethodId: "api-key";
|
|
3085
|
+
readonly requiredScopes: readonly [];
|
|
3086
|
+
}];
|
|
3087
|
+
readonly serviceId: "stripe";
|
|
3088
|
+
};
|
|
3089
|
+
type: "stripe.customer.updated";
|
|
3090
|
+
} | {
|
|
3091
|
+
name: string;
|
|
3092
|
+
account: {
|
|
3093
|
+
readonly connectionOptions: readonly [{
|
|
3094
|
+
readonly connectionMethodId: "api-key";
|
|
3095
|
+
readonly requiredScopes: readonly [];
|
|
3096
|
+
}];
|
|
3097
|
+
readonly serviceId: "stripe";
|
|
3098
|
+
};
|
|
3099
|
+
type: "stripe.event";
|
|
3100
|
+
} | {
|
|
3101
|
+
name: string;
|
|
3102
|
+
account: {
|
|
3103
|
+
readonly connectionOptions: readonly [{
|
|
3104
|
+
readonly connectionMethodId: "api-key";
|
|
3105
|
+
readonly requiredScopes: readonly [];
|
|
3106
|
+
}];
|
|
3107
|
+
readonly serviceId: "stripe";
|
|
3108
|
+
};
|
|
3109
|
+
type: "stripe.invoice.finalized";
|
|
3110
|
+
} | {
|
|
3111
|
+
name: string;
|
|
3112
|
+
account: {
|
|
3113
|
+
readonly connectionOptions: readonly [{
|
|
3114
|
+
readonly connectionMethodId: "api-key";
|
|
3115
|
+
readonly requiredScopes: readonly [];
|
|
3116
|
+
}];
|
|
3117
|
+
readonly serviceId: "stripe";
|
|
3118
|
+
};
|
|
3119
|
+
type: "stripe.invoice.overdue";
|
|
3120
|
+
} | {
|
|
3121
|
+
name: string;
|
|
3122
|
+
account: {
|
|
3123
|
+
readonly connectionOptions: readonly [{
|
|
3124
|
+
readonly connectionMethodId: "api-key";
|
|
3125
|
+
readonly requiredScopes: readonly [];
|
|
3126
|
+
}];
|
|
3127
|
+
readonly serviceId: "stripe";
|
|
3128
|
+
};
|
|
3129
|
+
type: "stripe.invoice.paid";
|
|
3130
|
+
} | {
|
|
3131
|
+
name: string;
|
|
3132
|
+
account: {
|
|
3133
|
+
readonly connectionOptions: readonly [{
|
|
3134
|
+
readonly connectionMethodId: "api-key";
|
|
3135
|
+
readonly requiredScopes: readonly [];
|
|
3136
|
+
}];
|
|
3137
|
+
readonly serviceId: "stripe";
|
|
3138
|
+
};
|
|
3139
|
+
type: "stripe.invoice.paymentFailed";
|
|
3140
|
+
} | {
|
|
3141
|
+
name: string;
|
|
3142
|
+
account: {
|
|
3143
|
+
readonly connectionOptions: readonly [{
|
|
3144
|
+
readonly connectionMethodId: "api-key";
|
|
3145
|
+
readonly requiredScopes: readonly [];
|
|
3146
|
+
}];
|
|
3147
|
+
readonly serviceId: "stripe";
|
|
3148
|
+
};
|
|
3149
|
+
type: "stripe.invoice.voided";
|
|
3150
|
+
} | {
|
|
3151
|
+
name: string;
|
|
3152
|
+
account: {
|
|
3153
|
+
readonly connectionOptions: readonly [{
|
|
3154
|
+
readonly connectionMethodId: "api-key";
|
|
3155
|
+
readonly requiredScopes: readonly [];
|
|
3156
|
+
}];
|
|
3157
|
+
readonly serviceId: "stripe";
|
|
3158
|
+
};
|
|
3159
|
+
type: "stripe.paymentIntent.canceled";
|
|
3160
|
+
} | {
|
|
3161
|
+
name: string;
|
|
3162
|
+
account: {
|
|
3163
|
+
readonly connectionOptions: readonly [{
|
|
3164
|
+
readonly connectionMethodId: "api-key";
|
|
3165
|
+
readonly requiredScopes: readonly [];
|
|
3166
|
+
}];
|
|
3167
|
+
readonly serviceId: "stripe";
|
|
3168
|
+
};
|
|
3169
|
+
type: "stripe.paymentIntent.paymentFailed";
|
|
3170
|
+
} | {
|
|
3171
|
+
name: string;
|
|
3172
|
+
account: {
|
|
3173
|
+
readonly connectionOptions: readonly [{
|
|
3174
|
+
readonly connectionMethodId: "api-key";
|
|
3175
|
+
readonly requiredScopes: readonly [];
|
|
3176
|
+
}];
|
|
3177
|
+
readonly serviceId: "stripe";
|
|
3178
|
+
};
|
|
3179
|
+
type: "stripe.paymentIntent.succeeded";
|
|
3180
|
+
} | {
|
|
3181
|
+
name: string;
|
|
3182
|
+
account: {
|
|
3183
|
+
readonly connectionOptions: readonly [{
|
|
3184
|
+
readonly connectionMethodId: "api-key";
|
|
3185
|
+
readonly requiredScopes: readonly [];
|
|
3186
|
+
}];
|
|
3187
|
+
readonly serviceId: "stripe";
|
|
3188
|
+
};
|
|
3189
|
+
type: "stripe.payout.failed";
|
|
3190
|
+
} | {
|
|
3191
|
+
name: string;
|
|
3192
|
+
account: {
|
|
3193
|
+
readonly connectionOptions: readonly [{
|
|
3194
|
+
readonly connectionMethodId: "api-key";
|
|
3195
|
+
readonly requiredScopes: readonly [];
|
|
3196
|
+
}];
|
|
3197
|
+
readonly serviceId: "stripe";
|
|
3198
|
+
};
|
|
3199
|
+
type: "stripe.payout.paid";
|
|
3200
|
+
} | {
|
|
3201
|
+
name: string;
|
|
3202
|
+
account: {
|
|
3203
|
+
readonly connectionOptions: readonly [{
|
|
3204
|
+
readonly connectionMethodId: "api-key";
|
|
3205
|
+
readonly requiredScopes: readonly [];
|
|
3206
|
+
}];
|
|
3207
|
+
readonly serviceId: "stripe";
|
|
3208
|
+
};
|
|
3209
|
+
type: "stripe.refund.created";
|
|
3210
|
+
} | {
|
|
3211
|
+
name: string;
|
|
3212
|
+
account: {
|
|
3213
|
+
readonly connectionOptions: readonly [{
|
|
3214
|
+
readonly connectionMethodId: "api-key";
|
|
3215
|
+
readonly requiredScopes: readonly [];
|
|
3216
|
+
}];
|
|
3217
|
+
readonly serviceId: "stripe";
|
|
3218
|
+
};
|
|
3219
|
+
type: "stripe.refund.failed";
|
|
2640
3220
|
} | {
|
|
2641
3221
|
name: string;
|
|
2642
3222
|
account: {
|
|
@@ -2961,6 +3541,66 @@ export declare const triggerCatalog: ({
|
|
|
2961
3541
|
readonly serviceId: "vercel";
|
|
2962
3542
|
};
|
|
2963
3543
|
type: "vercel.project.renamed";
|
|
3544
|
+
} | {
|
|
3545
|
+
name: string;
|
|
3546
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3547
|
+
type: "webflow.collectionItem.changed";
|
|
3548
|
+
} | {
|
|
3549
|
+
name: string;
|
|
3550
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3551
|
+
type: "webflow.collectionItem.created";
|
|
3552
|
+
} | {
|
|
3553
|
+
name: string;
|
|
3554
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3555
|
+
type: "webflow.collectionItem.deleted";
|
|
3556
|
+
} | {
|
|
3557
|
+
name: string;
|
|
3558
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3559
|
+
type: "webflow.collectionItem.published";
|
|
3560
|
+
} | {
|
|
3561
|
+
name: string;
|
|
3562
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3563
|
+
type: "webflow.collectionItem.unpublished";
|
|
3564
|
+
} | {
|
|
3565
|
+
name: string;
|
|
3566
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3567
|
+
type: "webflow.comment.created";
|
|
3568
|
+
} | {
|
|
3569
|
+
name: string;
|
|
3570
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3571
|
+
type: "webflow.event";
|
|
3572
|
+
} | {
|
|
3573
|
+
name: string;
|
|
3574
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3575
|
+
type: "webflow.form.submitted";
|
|
3576
|
+
} | {
|
|
3577
|
+
name: string;
|
|
3578
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3579
|
+
type: "webflow.inventory.changed";
|
|
3580
|
+
} | {
|
|
3581
|
+
name: string;
|
|
3582
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3583
|
+
type: "webflow.order.changed";
|
|
3584
|
+
} | {
|
|
3585
|
+
name: string;
|
|
3586
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3587
|
+
type: "webflow.order.created";
|
|
3588
|
+
} | {
|
|
3589
|
+
name: string;
|
|
3590
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3591
|
+
type: "webflow.page.created";
|
|
3592
|
+
} | {
|
|
3593
|
+
name: string;
|
|
3594
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3595
|
+
type: "webflow.page.deleted";
|
|
3596
|
+
} | {
|
|
3597
|
+
name: string;
|
|
3598
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3599
|
+
type: "webflow.page.metadataUpdated";
|
|
3600
|
+
} | {
|
|
3601
|
+
name: string;
|
|
3602
|
+
account: import("..").IntegrationAccountRequirement<"webflow">;
|
|
3603
|
+
type: "webflow.site.published";
|
|
2964
3604
|
} | {
|
|
2965
3605
|
name: string;
|
|
2966
3606
|
account: {
|
package/dist/triggers/index.js
CHANGED
|
@@ -9,8 +9,10 @@ import { linearTriggerDefinitions } from "./linear.js";
|
|
|
9
9
|
import { microsoftTriggerDefinitions } from "./microsoft.js";
|
|
10
10
|
import { resendTriggerDefinitions } from "./resend.js";
|
|
11
11
|
import { slackTriggerDefinitions } from "./slack.js";
|
|
12
|
+
import { stripeTriggerDefinitions } from "./stripe.js";
|
|
12
13
|
import { trelloTriggerDefinitions } from "./trello.js";
|
|
13
14
|
import { vercelTriggerDefinitions } from "./vercel.js";
|
|
15
|
+
import { webflowTriggerDefinitions } from "./webflow.js";
|
|
14
16
|
import { whatsappTriggerDefinitions } from "./whatsapp.js";
|
|
15
17
|
import { sentenceCase } from "./name.js";
|
|
16
18
|
import { getIntegrationService } from "../catalog.js";
|
|
@@ -28,8 +30,10 @@ export const triggerDefinitions = {
|
|
|
28
30
|
...microsoftTriggerDefinitions,
|
|
29
31
|
...resendTriggerDefinitions,
|
|
30
32
|
...slackTriggerDefinitions,
|
|
33
|
+
...stripeTriggerDefinitions,
|
|
31
34
|
...trelloTriggerDefinitions,
|
|
32
35
|
...vercelTriggerDefinitions,
|
|
36
|
+
...webflowTriggerDefinitions,
|
|
33
37
|
...whatsappTriggerDefinitions,
|
|
34
38
|
};
|
|
35
39
|
/** Trigger definitions with inferred display names materialized. */
|