@aleph-sdk/monorepo
    Preparing search index...

    Type Alias FunctionEnvironment

    Properties of the execution function environment

    reproducible: The function is deterministic (not available yet) internet: Allow internet access aleph_api: Allow access to the Aleph API shared_cache: Allow access to the shared redis cache

    type FunctionEnvironment = {
        aleph_api: boolean;
        internet: boolean;
        reproducible: false;
        shared_cache: boolean;
    }
    Index

    Properties

    aleph_api: boolean
    internet: boolean
    reproducible: false
    shared_cache: boolean