···1515export type Schema = Orama<typeof SCHEMA>;
16161717export type State = {
1818- cacheId: SignalReader<string | undefined>;
1818+ /**
1919+ * Initially this is set to `undefined`, but whenever the cache is changed afterwards this will be the hash of the items in the supply.
2020+ */
2121+ supplyFingerprint: SignalReader<string | undefined>;
1922};