@archastro/sdk
    Preparing search index...

    Variable slackDeliveryOutcomeSchemaConst

    slackDeliveryOutcomeSchema: ZodObject<
        {
            agent: ZodOptional<ZodString>;
            binding: ZodOptional<ZodString>;
            channel: ZodString;
            failure_reason: ZodOptional<ZodString>;
            guard_kind: ZodOptional<ZodString>;
            guard_labels: ZodOptional<ZodArray<ZodString, "many">>;
            id: ZodString;
            message: ZodOptional<ZodString>;
            operation: ZodEnum<["post", "post_ephemeral", "update"]>;
            outcome: ZodEnum<["delivered", "floored", "judge_refused", "failed"]>;
            recorded_at: ZodString;
            thread_ts: ZodOptional<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            agent?: string;
            binding?: string;
            channel: string;
            failure_reason?: string;
            guard_kind?: string;
            guard_labels?: string[];
            id: string;
            message?: string;
            operation: "post"
            | "post_ephemeral"
            | "update";
            outcome: "failed" | "delivered" | "floored" | "judge_refused";
            recorded_at: string;
            thread_ts?: string;
        },
        {
            agent?: string;
            binding?: string;
            channel: string;
            failure_reason?: string;
            guard_kind?: string;
            guard_labels?: string[];
            id: string;
            message?: string;
            operation: "post"
            | "post_ephemeral"
            | "update";
            outcome: "failed" | "delivered" | "floored" | "judge_refused";
            recorded_at: string;
            thread_ts?: string;
        },
    > = ...

    Runtime validator for SlackDeliveryOutcome.