svix
Version:
Svix webhooks API client and webhook verification library
16 lines (15 loc) • 468 B
TypeScript
import { type ConnectorKind } from "./connectorKind";
export interface ConnectorPatch {
allowedEventTypes?: string[] | null;
description?: string;
featureFlags?: string[] | null;
instructions?: string;
kind?: ConnectorKind;
logo?: string | null;
name?: string;
transformation?: string;
}
export declare const ConnectorPatchSerializer: {
_fromJsonObject(object: any): ConnectorPatch;
_toJsonObject(self: ConnectorPatch): any;
};