UNPKG

zamza

Version:

Apache Kafka discovery, indexing, searches, storage, hooks and HTTP gateway

16 lines 367 B
export interface Hook { _id?: string; name: string; endpoint: string; authorizationHeader: string; authorizationValue: string; disabled: boolean; subscriptions: [Subscription]; timestamp: number; } export interface Subscription { topic: string; ignoreReplay: boolean; disabled: boolean; } //# sourceMappingURL=Hook.d.ts.map