Coda by Ian Macalinao
    Preparing search index...

    Type Alias ExternalRegistryRecord

    An entry in PluginRegistryV1 describing one external plugin adapter and where its config/data live in the account.

    type ExternalRegistryRecord = {
        authority: Authority;
        dataLen: Option<bigint>;
        dataOffset: Option<bigint>;
        lifecycleChecks: Option<
            (readonly [HookableLifecycleEvent, ExternalCheckResult])[],
        >;
        offset: bigint;
        pluginType: ExternalPluginAdapterType;
    }
    Index

    Properties

    authority: Authority

    The authority currently allowed to manage the adapter.

    dataLen: Option<bigint>

    The length, in bytes, of this adapter's separate data payload, if it stores one.

    dataOffset: Option<bigint>

    The byte offset at which this adapter's separate data payload begins, if it stores one.

    lifecycleChecks: Option<
        (readonly [HookableLifecycleEvent, ExternalCheckResult])[],
    >

    The lifecycle events this adapter is consulted for, and how its result should be interpreted.

    offset: bigint

    The byte offset, within the plugin registry, at which this adapter's config begins.

    The type of the external plugin adapter this record describes.