@cfxlabsinc/b2b-services
    Preparing search index...
    Organization: Simplify<
        Omit<
            SelectOrganization,
            | "id"
            | "externalId"
            | "referenceId"
            | "customerId"
            | "status"
            | "description"
            | "entityType"
            | "data",
        > & Omit<Exclude<SelectOrganization["data"], null>, "phone"> & {
            capabilities: (
                | "TRANSACT"
                | "MANAGE_PAYMENT_INSTRUMENT"
                | "MANAGE_LEDGER_ACCOUNT"
                | "MANAGE_DEPOSIT_MEMO"
            )[];
            description?: NonNullable<SelectOrganization["description"]>;
            id: SelectOrganization["externalId"];
            legalEntityType: SelectOrganization["entityType"];
            phone?: E164Phone;
            referenceId?: NonNullable<SelectOrganization["referenceId"]>;
            status: Exclude<SelectOrganization["status"], "DELETED">;
            uuid: string;
        },
    >