svix
Version:
Svix webhooks API client and webhook verification library
25 lines (24 loc) • 664 B
TypeScript
export declare enum ConnectorKind {
Custom = "Custom",
AgenticCommerceProtocol = "AgenticCommerceProtocol",
CloseCrm = "CloseCRM",
CustomerIo = "CustomerIO",
Discord = "Discord",
Hubspot = "Hubspot",
Inngest = "Inngest",
Loops = "Loops",
Otel = "Otel",
Resend = "Resend",
Salesforce = "Salesforce",
Segment = "Segment",
Sendgrid = "Sendgrid",
Slack = "Slack",
Teams = "Teams",
TriggerDev = "TriggerDev",
Windmill = "Windmill",
Zapier = "Zapier"
}
export declare const ConnectorKindSerializer: {
_fromJsonObject(object: any): ConnectorKind;
_toJsonObject(self: ConnectorKind): any;
};