Integration App SDK - v1.14.0
    Preparing search index...

    Interface ResolveFormulaParams

    Parameters used to resolve formulas.

    interface ResolveFormulaParams {
        variables?: unknown;
        schema?: DataSchema;
        getDataCollection?: (
            key: string,
            parameters?: Record<string, unknown>,
        ) => Promise<DataCollectionSpec>;
        getInternalDataSchema?: (key: string) => Promise<DataSchema>;
    }
    Index

    Properties

    variables?: unknown

    Variables used in formulas

    schema?: DataSchema
    getDataCollection?: (
        key: string,
        parameters?: Record<string, unknown>,
    ) => Promise<DataCollectionSpec>
    getInternalDataSchema?: (key: string) => Promise<DataSchema>