refactor: trim auto reply type exports

This commit is contained in:
Peter Steinberger
2026-05-02 00:39:49 +01:00
parent fa54dcf8b4
commit 07f523be4a
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ import {
normalizeOptionalString,
} from "../shared/string-coerce.js";
export type AgentEnvelopeParams = {
type AgentEnvelopeParams = {
channel: string;
from?: string;
timestamp?: number | Date;

View File

@@ -2,7 +2,7 @@ import { normalizeOptionalLowercaseString } from "../shared/string-coerce.js";
import { normalizeCommandBody } from "./commands-registry.js";
import { stripInboundMetadata } from "./reply/strip-inbound-meta.js";
export type SendPolicyOverride = "allow" | "deny";
type SendPolicyOverride = "allow" | "deny";
function normalizeSendPolicyOverride(raw?: string | null): SendPolicyOverride | undefined {
const value = normalizeOptionalLowercaseString(raw);