Untitled

Anonymous
plain_text
03/01/2026 7:51 AM
2.9 KB
11
Indexable
export const baseDefault = {
    organization_name: "",
    contact_person: [
        {
            name: "",
            position: "",
            email: "",
            phone: "",
            linkedin: "",
        },
    ],
    headquarter: "",
    nearest_office_address: "",
    notes: "",
    status: "draft",

    country_id: [],
    business_model_id: [],
};

export const strategicDefault = {
    party_type: "STRATEGIC" as const,

    ...baseDefault,

    strategic_objective: "",
    geographic_focus: "",
    core_industry_id: [],
    preferred_ownership: "",
    control_expectation: "",
    capital_structure_preference: "",
    flexibility: "",

    typical_deal_size: {
        min: "",
        max: "",
    },

    revenue_range: {
        min: "",
        max: "",
    },

    ebitda_range: {
        min: "",
        max: "",
    },

    other_financial_metrics: {
        min: "",
        max: "",
    },

    name_portfolio: "",

    business_model_noteable: [],
};

export const financialDefault = {
    party_type: "FINANCIAL" as const,

    ...baseDefault,

    investor_type: "",
    aum_size: "",
    dry_powder: "",

    stage_preference: "",

    typical_ticket_size: {
        min: "",
        max: "",
    },

    preferred_ownership: "",
    capital_structure_preference: "",
    flexibility: "",
    control_preference: "",
    holding_period: "",

    revenue_range: {
        min: "",
        max: "",
    },

    ebitda_range: {
        min: "",
        max: "",
    },

    other_financial_metrics: {
        min: "",
        max: "",
    },

    name_portfolio: "",

    business_model_id_noteable: [],
};

export const advisorDefault = {
    party_type: "ADVISOR" as const,

    ...baseDefault,

    advisor_type: "",

    key_contact: "",
    coverage_geography: "",

    business_modal_focus: "",

    deal_size_capability: {
        min: "",
        max: "",
    },

    service_scope: "",

    relevant_transactions: "",
    indonesia_experience: "",

    typical_ticket_size: {
        min: "",
        max: "",
    },
};
Editor is loading...
Leave a Comment