submit_finality_proof: TxDescriptor<
    {
        finality_target: {
            digest: DigestItem[];
            extrinsics_root: FixedSizeBinary<32>;
            number: number;
            parent_hash: FixedSizeBinary<32>;
            state_root: FixedSizeBinary<32>;
        };
        justification: {
            commit: {
                precommits: {
                    id: FixedSizeBinary<32>;
                    precommit: { target_hash: FixedSizeBinary<32>; target_number: number };
                    signature: FixedSizeBinary<64>;
                }[];
                target_hash: FixedSizeBinary<32>;
                target_number: number;
            };
            round: bigint;
            votes_ancestries: {
                digest: DigestItem[];
                extrinsics_root: FixedSizeBinary<32>;
                number: number;
                parent_hash: FixedSizeBinary<32>;
                state_root: FixedSizeBinary<32>;
            }[];
        };
    },
>

This call is deprecated and will be removed around May 2024. Use the submit_finality_proof_ex instead. Semantically, this call is an equivalent of the submit_finality_proof_ex call without current authority set id check.