@arturwojnar/hermes-postgresql
Version:
Production-Ready TypeScript Outbox Pattern for PostgreSQL
6 lines (5 loc) • 297 B
TypeScript
declare const PublicationName = "hermes_pub";
declare const SlotNamePrefix = "hermes_slot";
type SlotName = `${typeof SlotNamePrefix}_${string}_${string}`;
declare const getSlotName: (consumerName: string, partitionKey: string) => SlotName;
export { getSlotName, PublicationName, type SlotName };