@cfxlabsinc/b2b-services
    Preparing search index...

    Type Alias StatusVariantOf<K>

    StatusVariantOf: K extends EmailTemplateKey
        ? IsNever<StatusOf<K>> extends true
            ? typeof STATUS_VARIANT_WILDCARD
            : StatusOf<K>
        : never

    Stored row keys: every declared status, or the wildcard sentinel.

    The one alias that must still distribute, because the sentinel is decided per key: for K = "DEPOSIT" | "LEDGER_ACCOUNT" an undistributed IsNever sees DEPOSIT's statuses and never reaches the sentinel LEDGER_ACCOUNT needs.

    Type Parameters