GeoLeaf Core API - v3.0.0
    Preparing search index...

    Per-entity freshness marker, read at pull time and sent back at push time.

    Whatever the backend offers: an HTTP ETag, or a modification timestamp (updated_at, write_date on Odoo). Its only job is to make a conflict DETECTABLE — today nothing carries it, so a conflict cannot even be observed, let alone arbitrated.

    interface VersionMarker {
        kind: "timestamp" | "etag";
        value: string;
    }
    Index

    Properties

    Properties

    kind: "timestamp" | "etag"
    value: string