@cfxlabsinc/b2b-services
    Preparing search index...
    UsWirePaymentInstrument: Simplify<
        Omit<PaymentInstrumentBase, "type"> & {
            accountNumber: string;
            beneficiary: {
                address: {
                    city: string;
                    countryCode: string;
                    line1: string;
                    line2?: string;
                    postalCode: string;
                    region?: string;
                };
                email?: string;
                phone?: string;
                reference?: string;
            } & (
                | { name: string; type: "BUSINESS" }
                | {
                    firstName: string;
                    lastName: string;
                    middleName?: string;
                    type: "PERSON";
                }
            );
            financialInstitution: {
                address: {
                    city: string;
                    line1: string;
                    postalCode: string;
                    state: string;
                };
                name: string;
            };
            routingNumber: string;
            type: Extract<PaymentInstrumentBase["type"], "US_WIRE">;
            verificationProfileId?: string;
            victorCounterpartyId?: string;
        },
    >