import { KeyValueType } from "../KeyValue.type"; export type PubSubPublishOptions = { /** * The content type of the message. * This is optional and will be inferred from the payload if not provided. */ contentType?: string; /** * Metadata to be passed to the publish operation. */ metadata?: KeyValueType; };