├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.md ├── copilot-instructions.md ├── pull_request_template.md └── workflows │ └── betaSite.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── agents.md ├── coverage.json ├── cspell.json ├── docs ├── .nojekyll ├── CNAME ├── api │ ├── all.html │ ├── article.html │ ├── checkpoints │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createcheckpoints │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── checkpoints │ │ │ │ ├── article.html │ │ │ │ ├── checkpoints │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ │ └── setsize │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── development │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getlistenerstats │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getter │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getcheckpoint │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getcheckpointids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hascheckpoint │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── iterator │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── foreachcheckpoint │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── clear │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── clearforward │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── listener │ │ │ │ │ │ │ ├── addcheckpointidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addcheckpointlistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── movement │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── gobackward │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── goforward │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── goto │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ └── setter │ │ │ │ │ │ │ ├── addcheckpoint │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ │ └── setcheckpoint │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── callback │ │ │ ├── article.html │ │ │ ├── checkpointcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── checkpointslistenerstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── identity │ │ │ ├── article.html │ │ │ ├── checkpointids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── checkpointidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── checkpointlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── nav.json │ ├── common │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── convenience │ │ │ │ ├── article.html │ │ │ │ ├── defaultsorter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getuniqueid │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hash │ │ │ │ ├── addorremovehash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── article.html │ │ │ │ ├── getcellhash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getcellinrowhash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── gethash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getrowhash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getrowintablehash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── gettablehash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── gettableintableshash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── gettableshash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getvaluehash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getvalueinvalueshash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getvalueshash │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── stamps │ │ │ │ ├── article.html │ │ │ │ ├── gethlcfunctions │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── callback │ │ │ ├── article.html │ │ │ ├── callback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── parameterizedcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── general │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── json │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ ├── identity │ │ │ ├── article.html │ │ │ ├── id │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── idornull │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── ids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── parameter │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── sortkey │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── stamps │ │ │ ├── article.html │ │ │ ├── getnow │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── hash │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── hlc │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ ├── index.html │ ├── indexes │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createindexes │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── indexes │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── indexes │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── delindexdefinition │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ │ └── setindexdefinition │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── development │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getlistenerstats │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getter │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getindexids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getsliceids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getslicerowids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettableid │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hasindex │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hasslice │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── iterator │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── foreachindex │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── foreachslice │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── listener │ │ │ │ │ │ │ ├── addindexidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addsliceidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addslicerowidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── callback │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── indexcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ └── slicecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── concept │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── index │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ └── slice │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── indexeslistenerstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── indexidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── sliceidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── slicerowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ ├── mergeable-store │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createmergeablestore │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── mergeable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── mergeablestore │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── deleter │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── delcell │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── delrow │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── delschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── deltable │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── deltables │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── deltablesschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── delvalue │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── delvalues │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── delvaluesschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── development │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getlistenerstats │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getter │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getcell │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getcellids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getcontent │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getjson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeablecontent │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getrow │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getrowcount │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getrowids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getschemajson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getsortedrowids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettable │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettablecellids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettableids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettables │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettablesjson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettablesschemajson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getvalue │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getvalueids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getvalues │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getvaluesjson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getvaluesschemajson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hascell │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hasrow │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hastable │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hastablecell │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hastables │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hastablesschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hasvalue │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hasvalues │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hasvaluesschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── ismergeable │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── iterator │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── foreachcell │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── foreachrow │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── foreachtable │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── foreachtablecell │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── foreachvalue │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── listener │ │ │ │ │ │ │ ├── addcellidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addcelllistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── adddidfinishtransactionlistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addhascelllistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addhasrowlistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addhastablecelllistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addhastablelistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addhastableslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addhasvaluelistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addhasvalueslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addinvalidcelllistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addinvalidvaluelistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addrowcountlistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addrowidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addrowlistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addsortedrowidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addstarttransactionlistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addtablecellidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addtableidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addtablelistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addtableslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addvalueidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addvaluelistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addvalueslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addwillfinishtransactionlistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── calllistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── setter │ │ │ │ │ │ │ ├── addrow │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── applychanges │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── applymergeablechanges │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── merge │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ │ ├── setcell │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setcontent │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setdefaultcontent │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setjson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setmergeablecontent │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setpartialrow │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setpartialvalues │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setrow │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── settable │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── settables │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── settablesjson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── settablesschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setvalue │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setvalues │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── setvaluesjson │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ └── setvaluesschema │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── syncing │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getmergeablecelldiff │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeablecellhashes │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeablecontenthashes │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeablerowdiff │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeablerowhashes │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeabletablediff │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeabletablehashes │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeablevaluediff │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmergeablevaluehashes │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── transaction │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── finishtransaction │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettransactionchanges │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettransactionlog │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettransactionmergeablechanges │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ │ ├── starttransaction │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ └── transaction │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── mergeable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── mergeablechanges │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── mergeablecontent │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── stamps │ │ │ ├── article.html │ │ │ ├── cellstamp │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── rowstamp │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── stamp │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablesstamp │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablestamp │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── valuesstamp │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── valuestamp │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── syncing │ │ │ ├── article.html │ │ │ ├── cellhashes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── contenthashes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── rowhashes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── tablehashes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── valuehashes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── metrics │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createmetrics │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── metrics │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── metrics │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── delmetricdefinition │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ │ └── setmetricdefinition │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── development │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getlistenerstats │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getter │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── getmetric │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getmetricids │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── gettableid │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── hasmetric │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── iterator │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── foreachmetric │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── listener │ │ │ │ │ │ │ ├── addmetricidslistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── addmetriclistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── aggregators │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── metricaggregate │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── metricaggregateadd │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── metricaggregateremove │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── metricaggregatereplace │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ ├── article.html │ │ │ ├── callback │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── metriccallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── metricslistenerstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── metricidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── metriclistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ ├── metric │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── metric │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ │ └── nav.json │ ├── nav.json │ ├── persister-automerge │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createautomergepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── automergepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getdochandle │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-browser │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createlocalpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── createopfspersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── createsessionpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── localpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstoragename │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ ├── opfspersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── gethandle │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ └── sessionpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstoragename │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-cr-sqlite-wasm │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createcrsqlitewasmpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── crsqlitewasmpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getdb │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-durable-object-sql-storage │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createdurableobjectsqlstoragepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── durableobjectsqlstoragepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getsqlstorage │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── configuration │ │ │ ├── article.html │ │ │ ├── dpcfragmented │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── durableobjectsqldatabasepersisterconfig │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ ├── persister-durable-object-storage │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createdurableobjectstoragepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── durableobjectstoragepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstorage │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-electric-sql │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createelectricsqlpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── electricsqlpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getelectricclient │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-expo-sqlite │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createexposqlitepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── exposqlitepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getdb │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-file │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createfilepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── filepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getfilepath │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-indexed-db │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createindexeddbpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── indexeddbpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getdbname │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-libsql │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createlibsqlpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── libsqlpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getclient │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ └── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-partykit-client │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createpartykitpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── partykitpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getconnection │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── configuration │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── partykitpersisterconfig │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ ├── persister-partykit-server │ │ ├── article.html │ │ ├── classes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── server │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── tinybasepartykitserver │ │ │ │ ├── article.html │ │ │ │ ├── constructors │ │ │ │ ├── article.html │ │ │ │ ├── creation │ │ │ │ │ ├── article.html │ │ │ │ │ ├── constructor │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── connection │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── onmessage │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── onrequest │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── sanitization │ │ │ │ │ ├── article.html │ │ │ │ │ ├── candelcell │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── candelrow │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── candeltable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── candelvalue │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── cansetcell │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── cansetrow │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── cansettable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── cansetvalue │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── properties │ │ │ │ ├── article.html │ │ │ │ ├── configuration │ │ │ │ ├── article.html │ │ │ │ ├── config │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── connection │ │ │ │ ├── article.html │ │ │ │ ├── broadcastchanges │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── storage │ │ │ │ ├── article.html │ │ │ │ ├── hasstoreinstorage │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── loadstorefromstorage │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── configuration │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── tinybasepartykitserverconfig │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ ├── persister-pglite │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createpglitepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── pglitepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getpglite │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-postgres │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createpostgrespersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── postgrespersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getsql │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-powersync │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createpowersyncpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── powersyncpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getpowersync │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-react-native-mmkv │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createreactnativemmkvpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── reactnativemmkvpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstoragename │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-react-native-sqlite │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createreactnativesqlitepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── reactnativesqlitepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getdb │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-remote │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createremotepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── remotepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── geturls │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-sqlite-bun │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createsqlitebunpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── sqlitebunpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getdb │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-sqlite-wasm │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createsqlitewasmpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── sqlitewasmpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getdb │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-sqlite3 │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createsqlite3persister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── sqlite3persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getdb │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persister-yjs │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createyjspersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── yjspersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getydoc │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── persisters │ │ ├── article.html │ │ ├── enumerations │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── lifecycle │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── status │ │ │ │ │ ├── article.html │ │ │ │ │ ├── enumeration-members │ │ │ │ │ ├── article.html │ │ │ │ │ ├── enum │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ ├── mergeable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── persists │ │ │ │ │ ├── article.html │ │ │ │ │ ├── enumeration-members │ │ │ │ │ ├── article.html │ │ │ │ │ ├── enum │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createcustompersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── createcustompostgresqlpersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── createcustomsqlitepersister │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── configuration │ │ │ ├── article.html │ │ │ ├── databasepersisterconfig │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── dpcjson │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── dpctabular │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── dpctabularcondition │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── dpctabularload │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── dpctabularsave │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── dpctabularvalues │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── creation │ │ │ ├── article.html │ │ │ ├── databasechangelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── databaseexecutecommand │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persisterlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persisterstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── statuslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── mergeable │ │ │ ├── anypersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── persistedchanges │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── persistedcontent │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── persistedstore │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ ├── queries │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createqueries │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── queries │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── queries │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── configuration │ │ │ │ │ ├── article.html │ │ │ │ │ ├── delquerydefinition │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── setparamvalue │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setparamvalues │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── setquerydefinition │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getlistenerstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getparamvalue │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getparamvalues │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getqueryids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettableid │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasquery │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── iterator │ │ │ │ │ ├── article.html │ │ │ │ │ ├── foreachquery │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── foreachresultcell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── foreachresultrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── foreachresulttable │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addparamvaluelistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addparamvalueslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addqueryidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresultcellidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresultcelllistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresultrowcountlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresultrowidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresultrowlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresultsortedrowidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresulttablecellidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addresulttablelistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ └── result │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getresultcell │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getresultcellids │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getresultrow │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getresultrowcount │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getresultrowids │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getresultsortedrowids │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getresulttable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getresulttablecellids │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasresultcell │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasresultrow │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasresulttable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── aggregators │ │ │ ├── aggregate │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── aggregateadd │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── aggregateremove │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── aggregatereplace │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── article.html │ │ │ ├── callback │ │ │ ├── article.html │ │ │ ├── gettablecell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── querycallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultcellcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultrowcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── resulttablecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── definition │ │ │ ├── article.html │ │ │ ├── group │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── groupedas │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── having │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── join │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── joinedas │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── param │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── select │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── selectedas │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── where │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── querieslistenerstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── getresultcellchange │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── paramvaluelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── paramvalueslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── queryidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultcellchange │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultcellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultcelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultrowcountlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultrowlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultsortedrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resulttablecellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── resulttablelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── params │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── paramvalue │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── paramvalues │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── result │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── resultcell │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── resultcellorundefined │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── resultrow │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── resulttable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── relationships │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createrelationships │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── relationships │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── relationships │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── configuration │ │ │ │ │ ├── article.html │ │ │ │ │ ├── delrelationshipdefinition │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ └── setrelationshipdefinition │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getlistenerstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getlinkedrowids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getlocalrowids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getlocaltableid │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getrelationshipids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getremoterowid │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getremotetableid │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasrelationship │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── iterator │ │ │ │ │ ├── article.html │ │ │ │ │ ├── foreachrelationship │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addlinkedrowidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addlocalrowidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addrelationshipidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addremoterowidlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── callback │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── relationshipcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── concept │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── relationship │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── relationshipslistenerstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── linkedrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── localrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── relationshipidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── remoterowidlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ ├── schematizer-arktype │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createarktypeschematizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── schematizer │ │ │ │ ├── arktypeschematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── conversion │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── totablesschema │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── tovaluesschema │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── schematizer-effect │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createeffectschematizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── schematizer │ │ │ │ ├── article.html │ │ │ │ ├── effectschematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── conversion │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── totablesschema │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── tovaluesschema │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── schematizer-typebox │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createtypeboxschematizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── schematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── typeboxschematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── conversion │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── totablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── tovaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── schematizer-valibot │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createvalibotschematizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── schematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── valibotschematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── conversion │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── totablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── tovaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── schematizer-yup │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createyupschematizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── schematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── yupschematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── conversion │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── totablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── tovaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── schematizer-zod │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createzodschematizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── schematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── zodschematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── conversion │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── totablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── tovaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── schematizers │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createcustomschematizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── schematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── schematizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── conversion │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── totablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── tovaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── store │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createstore │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── store │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── store │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── deleter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── delcell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── delrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── delschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── deltable │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── deltables │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── deltablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── delvalue │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── delvalues │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── delvaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getlistenerstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getcell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getcellids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getcontent │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getjson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getrowcount │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getrowids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getschemajson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getsortedrowids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettable │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettablecellids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettableids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettables │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettablesjson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettablesschemajson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getvalue │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getvalueids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getvalues │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getvaluesjson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getvaluesschemajson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hascell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hastable │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hastablecell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hastables │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hastablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasvalue │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasvalues │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── hasvaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ismergeable │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── iterator │ │ │ │ │ ├── article.html │ │ │ │ │ ├── foreachcell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── foreachrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── foreachtable │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── foreachtablecell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── foreachvalue │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addcellidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addcelllistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── adddidfinishtransactionlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addhascelllistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addhasrowlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addhastablecelllistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addhastablelistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addhastableslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addhasvaluelistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addhasvalueslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addinvalidcelllistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addinvalidvaluelistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addrowcountlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addrowidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addrowlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addsortedrowidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addstarttransactionlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addtablecellidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addtableidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addtablelistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addtableslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addvalueidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addvaluelistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addvalueslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addwillfinishtransactionlistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── calllistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ ├── setter │ │ │ │ │ ├── addrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── applychanges │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── setcell │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setcontent │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setjson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setpartialrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setpartialvalues │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setrow │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── settable │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── settables │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── settablesjson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── settablesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setvalue │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setvalues │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── setvaluesjson │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── setvaluesschema │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── transaction │ │ │ │ │ ├── article.html │ │ │ │ │ ├── finishtransaction │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettransactionchanges │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── gettransactionlog │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── starttransaction │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── transaction │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── callback │ │ │ ├── article.html │ │ │ ├── cellcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── dorollback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── getcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── mapcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── mapvalue │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── rowcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablecellcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── valuecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── storelistenerstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── cellchange │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── cellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── celllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── getcellchange │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── getidchanges │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── getvaluechange │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hascelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hasrowlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hastablecelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hastablelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hastableslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hasvaluelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── hasvalueslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── invalidcelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── invalidvaluelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── rowcountlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── rowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── rowlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── sortedrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablecellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tableidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tableslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── transactionlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── valuechange │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── valueidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── valuelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── valueslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── schema │ │ │ ├── article.html │ │ │ ├── cellschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── noschemas │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── notablesschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── novaluesschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── optionalschemas │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── optionaltablesschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── optionalvaluesschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablesschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── valueschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── valuesschema │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── store │ │ │ ├── article.html │ │ │ ├── cell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── cellorundefined │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── content │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── row │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── sortedrowidsargs │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── table │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tables │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── value │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── valueorundefined │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── values │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── transaction │ │ │ ├── article.html │ │ │ ├── changedcell │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changedcellids │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changedcells │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changedrowids │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changedtableids │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changedvalue │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changedvalueids │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changedvalues │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── changes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── idaddedorremoved │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── invalidcells │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── invalidvalues │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ └── transactionlog │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── synchronizer-broadcast-channel │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createbroadcastchannelsynchronizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── synchronizer │ │ │ │ ├── article.html │ │ │ │ ├── broadcastchannelsynchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getchannelname │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── synchronization │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getsynchronizerstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startsync │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopsync │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── nav.json │ ├── synchronizer-local │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createlocalsynchronizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── synchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── localsynchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── development │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstats │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getstore │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lifecycle │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getstatus │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── schedule │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── dellistener │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautoload │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── save │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── startautosave │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopautosave │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── synchronization │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getsynchronizerstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── startsync │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── stopsync │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── synchronizer-ws-client │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createwssynchronizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── synchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── wssynchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getwebsocket │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── synchronization │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getsynchronizerstats │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startsync │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopsync │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── creation │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── websockettypes │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ ├── synchronizer-ws-server-durable-object │ │ ├── article.html │ │ ├── classes │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── wsserverdurableobject │ │ │ │ │ ├── article.html │ │ │ │ │ ├── constructors │ │ │ │ │ ├── article.html │ │ │ │ │ ├── creation │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── constructor │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── methods │ │ │ │ │ ├── article.html │ │ │ │ │ ├── creation │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── createpersister │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── event │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── nav.json │ │ │ │ │ │ ├── onclientid │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── onmessage │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ └── onpathid │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getter │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── getclientids │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── getpathid │ │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nav.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── getwsserverdurableobjectfetch │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ └── nav.json │ ├── synchronizer-ws-server-simple │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createwsserversimple │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── server │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── wsserversimple │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getwebsocketserver │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ └── nav.json │ ├── synchronizer-ws-server │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createwsserver │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── server │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── wsserver │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getclientids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getpathids │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getwebsocketserver │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── listener │ │ │ │ │ ├── addclientidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── addpathidslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── wsserverstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── listener │ │ │ ├── article.html │ │ │ ├── clientidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pathidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ ├── synchronizers │ │ ├── article.html │ │ ├── enumerations │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── synchronization │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── message │ │ │ │ ├── article.html │ │ │ │ ├── enumeration-members │ │ │ │ │ ├── article.html │ │ │ │ │ ├── enum │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── creation │ │ │ │ ├── article.html │ │ │ │ ├── createcustomsynchronizer │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── synchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── synchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── methods │ │ │ │ ├── article.html │ │ │ │ ├── development │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstats │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── getter │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getstore │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── lifecycle │ │ │ │ │ ├── article.html │ │ │ │ │ ├── destroy │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── getstatus │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── schedule │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautopersisting │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── listener │ │ │ │ │ ├── addstatuslistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── article.html │ │ │ │ │ ├── dellistener │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ ├── load │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautoloading │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── load │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautoload │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ ├── nav.json │ │ │ │ ├── save │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── isautosaving │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── save │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ ├── startautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopautosave │ │ │ │ │ │ ├── article.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nav.json │ │ │ │ └── synchronization │ │ │ │ │ ├── article.html │ │ │ │ │ ├── getsynchronizerstats │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nav.json │ │ │ │ │ ├── startsync │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ │ └── stopsync │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── development │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── synchronizerstats │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── synchronization │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── receive │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── send │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── the-essentials │ │ ├── article.html │ │ ├── creating-stores │ │ │ ├── article.html │ │ │ ├── createmergeablestore │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── createstore │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── store │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── getting-data │ │ │ ├── article.html │ │ │ ├── getcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── getrow │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── getvalue │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── listening-for-changes │ │ │ ├── addcelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── addrowlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── addvaluelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── nav.json │ │ ├── persisting-stores │ │ │ ├── article.html │ │ │ ├── createdurableobjectsqlstoragepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── createlocalpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── createpglitepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── createsessionpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── createsqlitewasmpersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── persister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── setting-data │ │ │ ├── addrow │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── setcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── setrow │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── setvalue │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── transaction │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── synchronizing-stores │ │ │ ├── article.html │ │ │ ├── createwssynchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── synchronizer │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── wsserverdurableobject │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── using-react │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── inspector │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── provider │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── usecell │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── usecreatestore │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── userow │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── usevalue │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── ui-react-dom │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── indexes-components │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── sliceinhtmltable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ ├── queries-components │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ ├── resultsortedtableinhtmltable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── resulttableinhtmltable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ ├── relationships-components │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ └── relationshipinhtmltable │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ └── store-components │ │ │ │ ├── article.html │ │ │ │ ├── editablecellview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── editablevalueview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── index.html │ │ │ │ ├── nav.json │ │ │ │ ├── sortedtableinhtmltable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── sortedtablepaginator │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ ├── tableinhtmltable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ │ └── valuesinhtmltable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── configuration │ │ │ ├── article.html │ │ │ ├── customcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── customresultcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── extrarowcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── extravaluecell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── props │ │ │ ├── article.html │ │ │ ├── htmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── relationshipinhtmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── resultsortedtableinhtmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── resulttableinhtmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── sliceinhtmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── sortedtableinhtmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── sortedtablepaginatorprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── tableinhtmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── valuesinhtmltableprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── ui-react-inspector │ │ ├── article.html │ │ ├── functions │ │ │ ├── article.html │ │ │ ├── development-components │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ ├── inspector │ │ │ │ │ ├── article.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── nav.json │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── type-aliases │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── props │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── inspectorprops │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── nav.json │ └── ui-react │ │ ├── article.html │ │ ├── functions │ │ ├── article.html │ │ ├── checkpoints-components │ │ │ ├── article.html │ │ │ ├── backwardcheckpointsview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── checkpointview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── currentcheckpointview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── forwardcheckpointsview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── checkpoints-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── usecheckpoint │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecheckpointids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecheckpointidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecheckpointlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecheckpoints │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecheckpointsids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecheckpointsorcheckpointsbyid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecreatecheckpoints │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usegobackwardcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usegoforwardcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usegotocallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useprovidecheckpoints │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useredoinformation │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetcheckpointcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── useundoinformation │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── context-components │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── provider │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── index.html │ │ ├── indexes-components │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── indexview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ └── sliceview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── indexes-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── usecreateindexes │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useindexes │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useindexesids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useindexesorindexesbyid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useindexids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useprovideindexes │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesliceids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesliceidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useslicerowids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── useslicerowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── metrics-components │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── metricview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── nav.json │ │ ├── metrics-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── usecreatemetrics │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usemetric │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usemetricids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usemetriclistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usemetrics │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usemetricsids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usemetricsormetricsbyid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── useprovidemetrics │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── nav.json │ │ ├── persister-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── usecreatepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usepersisterids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usepersisterorpersisterbyid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usepersisterstatus │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usepersisterstatuslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── useprovidepersister │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── queries-components │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── resultcellview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultrowview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── resultsortedtableview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── resulttableview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── queries-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── usecreatequeries │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useparamvalue │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useparamvaluelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useparamvalues │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useparamvalueslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useprovidequeries │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usequeries │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usequeriesids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usequeriesorqueriesbyid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usequeryids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultcell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultcellids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultcellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultcelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultrow │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultrowcount │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultrowcountlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultrowids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultrowlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultsortedrowids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresultsortedrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresulttable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresulttablecellids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresulttablecellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useresulttablelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetparamvaluecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── usesetparamvaluescallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── relationships-components │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── linkedrowsview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── localrowsview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── nav.json │ │ │ └── remoterowview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── relationships-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── usecreaterelationships │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── uselinkedrowids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── uselinkedrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── uselocalrowids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── uselocalrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useproviderelationships │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userelationshipids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userelationships │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userelationshipsids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userelationshipsorrelationshipsbyid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useremoterowid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── useremoterowidlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── store-components │ │ │ ├── article.html │ │ │ ├── cellview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── rowview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── sortedtableview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tablesview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── tableview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── valuesview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── valueview │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ ├── store-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── useaddrowcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecellids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecreatemergeablestore │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usecreatestore │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usedelcellcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usedelrowcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usedeltablecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usedeltablescallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usedelvaluecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usedelvaluescallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usedidfinishtransactionlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehascell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehascelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehasrow │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehasrowlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehastable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehastablecell │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehastablecelllistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehastablelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehastables │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehastableslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehasvalue │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehasvaluelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehasvalues │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usehasvalueslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── useprovidestore │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userow │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userowcount │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userowcountlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userowids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── userowlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetcellcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetpartialrowcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetpartialvaluescallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetrowcallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesettablecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesettablescallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetvaluecallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesetvaluescallback │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesortedrowids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usesortedrowidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usestarttransactionlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usestore │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usestoreids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usestoreorstorebyid │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usestores │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetable │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetablecellids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetablecellidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetableids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetableidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetablelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetables │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usetableslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usevalue │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usevalueids │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usevalueidslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usevaluelistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usevalues │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ ├── usevalueslistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ │ └── usewillfinishtransactionlistener │ │ │ │ ├── article.html │ │ │ │ ├── index.html │ │ │ │ └── nav.json │ │ └── synchronizer-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ ├── usecreatesynchronizer │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── useprovidesynchronizer │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── usesynchronizer │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── usesynchronizerids │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── usesynchronizerorsynchronizerbyid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ ├── usesynchronizerstatus │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ │ └── usesynchronizerstatuslistener │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── type-aliases │ │ ├── article.html │ │ ├── checkpoints │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ └── undoorredoinformation │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── component │ │ ├── article.html │ │ ├── componentreturntype │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ └── nav.json │ │ ├── identity │ │ ├── article.html │ │ ├── checkpointsorcheckpointsid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── getid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── indexesorindexesid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── metricsormetricsid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── nav.json │ │ ├── persisterorpersisterid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── queriesorqueriesid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── relationshipsorrelationshipsid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── storeorstoreid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── synchronizerorsynchronizerid │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── props │ │ ├── article.html │ │ ├── backwardcheckpointsprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── cellprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── checkpointprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── currentcheckpointprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── extraprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── forwardcheckpointsprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── index.html │ │ ├── indexprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── linkedrowsprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── localrowsprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── metricprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── nav.json │ │ ├── providerprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── remoterowprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── resultcellprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── resultrowprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── resultsortedtableprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── resulttableprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── rowprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── sliceprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── sortedtableprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── tableprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── tablesprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── valueprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ └── valuesprops │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json ├── arch0.svg ├── arch1.svg ├── arch2.svg ├── arch3.svg ├── arch4.svg ├── arch5.svg ├── arch6.svg ├── arktype.svg ├── assets │ ├── cars.tsv │ ├── cast.tsv │ ├── cities.tsv │ ├── countries.json │ ├── genres.tsv │ ├── movies.tsv │ ├── people.tsv │ └── words.tsv ├── automerge.svg ├── browser.svg ├── bun.svg ├── car-analysis.webp ├── cloudflare.svg ├── common.svg ├── crsqlite.png ├── css │ └── index.css ├── database.svg ├── demos │ ├── article.html │ ├── car-analysis │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ └── pen.json │ ├── city-database │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ └── pen.json │ ├── countries │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ └── pen.json │ ├── drawing │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ └── pen.json │ ├── hello-world │ │ ├── article.html │ │ ├── hello-world-v1 │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── hello-world-v2 │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── hello-world-v3 │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── hello-world-v4 │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── index.html │ │ └── nav.json │ ├── index.html │ ├── movie-database │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ └── pen.json │ ├── nav.json │ ├── pen.json │ ├── rolling-dice │ │ ├── article.html │ │ ├── averaging-dice-rolls │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── grouping-dice-rolls │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── index.html │ │ └── nav.json │ ├── tinydraw │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ ├── tinymovies │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ ├── todo-app │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ ├── todo-app-v1-the-basics │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── todo-app-v2-indexes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── todo-app-v3-persistence │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── todo-app-v4-metrics │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── todo-app-v5-checkpoints │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ └── todo-app-v6-collaboration │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ ├── ui-components │ │ ├── article.html │ │ ├── editablecellview │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── editablevalueview │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── index.html │ │ ├── inspector │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── nav.json │ │ ├── relationshipinhtmltable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── resultsortedtableinhtmltable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── resulttableinhtmltable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── sliceinhtmltable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── sortedtableinhtmltable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ ├── tableinhtmltable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ │ └── valuesinhtmltable │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ ├── nav.json │ │ │ └── pen.json │ └── word-frequencies │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ └── pen.json ├── durable.svg ├── effect.svg ├── electric.svg ├── expo.svg ├── favicon.png ├── favicon.svg ├── favicon_pad.png ├── fonts │ ├── inconsolata.woff2 │ ├── inter.woff2 │ └── shantell.woff2 ├── guides │ ├── agents-guide │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ ├── article.html │ ├── building-uis │ │ ├── article.html │ │ ├── getting-started-with-ui-react │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ ├── using-context │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── using-react-components │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── using-react-dom-components │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── using-react-hooks │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── faq │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ ├── how-tinybase-is-built │ │ ├── architecture │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── credits │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── developing-tinybase │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── documentation │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── how-the-demos-work │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── testing │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── index.html │ ├── inspecting-data │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ ├── integrations │ │ ├── article.html │ │ ├── cloudflare-durable-objects │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ └── nav.json │ ├── making-queries │ │ ├── article.html │ │ ├── building-a-ui-with-queries │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ ├── tinyql │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── using-queries │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── metrics-and-indexes │ │ ├── advanced-index-definition │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── advanced-metric-definition │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── building-a-ui-with-indexes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── building-a-ui-with-metrics │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ ├── using-indexes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── using-metrics │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── nav.json │ ├── persistence │ │ ├── an-intro-to-persistence │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── custom-persistence │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── database-persistence │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── third-party-crdt-persistence │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── relationships-and-checkpoints │ │ ├── advanced-relationship-definitions │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── building-a-ui-with-checkpoints │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── building-a-ui-with-relationships │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ ├── using-checkpoints │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── using-relationships │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── releases │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ ├── schemas-and-persistence │ │ ├── article.html │ │ ├── custom-persistence │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── database-persistence │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── mutating-data-with-listeners │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── nav.json │ │ ├── persisting-data │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── schema-based-typing │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── synchronizing-data │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── using-schemas │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── schemas │ │ ├── article.html │ │ ├── index.html │ │ ├── mutating-data-with-listeners │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── nav.json │ │ ├── schema-based-typing │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── using-schemas │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── using-schematizers │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── synchronization │ │ ├── article.html │ │ ├── index.html │ │ ├── nav.json │ │ ├── using-a-mergeablestore │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── using-a-synchronizer │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── the-basics │ │ ├── architectural-options │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── creating-a-store │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── getting-started │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── importing-tinybase │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── listening-to-stores │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── nav.json │ │ ├── reading-from-stores │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── tinybase-and-typescript │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── transactions │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ └── writing-to-stores │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ ├── using-checkpoints │ │ ├── an-intro-to-checkpoints │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── building-a-ui-with-checkpoints │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ └── nav.json │ ├── using-indexes │ │ ├── advanced-index-definition │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── an-intro-to-indexes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── building-a-ui-with-indexes │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ └── nav.json │ ├── using-metrics │ │ ├── advanced-metric-definition │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── an-intro-to-metrics │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── building-a-ui-with-metrics │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ └── nav.json │ ├── using-queries │ │ ├── an-intro-to-queries │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── article.html │ │ ├── building-a-ui-with-queries │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ │ ├── index.html │ │ ├── nav.json │ │ └── tinyql │ │ │ ├── article.html │ │ │ ├── index.html │ │ │ └── nav.json │ └── using-relationships │ │ ├── advanced-relationship-definitions │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── an-intro-to-relationships │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── article.html │ │ ├── building-a-ui-with-relationships │ │ ├── article.html │ │ ├── index.html │ │ └── nav.json │ │ ├── index.html │ │ └── nav.json ├── index.html ├── indexeddb.svg ├── inspector.webp ├── js │ ├── app.js │ ├── home.js │ └── single.js ├── local-first.svg ├── logotype.svg ├── movie-database.webp ├── nav.json ├── pages.json ├── partykit.gif ├── partykit.svg ├── pglite.svg ├── postgresql.svg ├── powersync.svg ├── pseudo.esm.sh │ └── tinybase@7.2.0 │ │ ├── index.js │ │ ├── persisters │ │ ├── persister-browser │ │ │ └── index.js │ │ └── persister-remote │ │ │ └── index.js │ │ ├── synchronizers │ │ └── synchronizer-ws-client │ │ │ └── index.js │ │ ├── ui-react-dom │ │ └── index.js │ │ ├── ui-react-inspector │ │ └── index.js │ │ └── ui-react │ │ └── index.js ├── react.svg ├── reactive.svg ├── sqlite.svg ├── store-inspector.webp ├── sync.svg ├── tinyrooms.webp ├── turso.svg ├── typebox.svg ├── ui-react-dom.webp ├── valibot.svg ├── vite-tinybase-2.png ├── vite-tinybase-sync.mov ├── vite-tinybase-sync.png ├── vite-tinybase.png ├── yjs.svg ├── youtube.webp ├── yup.svg └── zod.svg ├── eslint.config.js ├── gulpfile.mjs ├── package.json ├── readme.md ├── releases.md ├── site ├── build.ts ├── data │ ├── cars.tsv │ ├── cast.tsv │ ├── cities.tsv │ ├── genres.tsv │ ├── movies.tsv │ ├── people.tsv │ └── words.tsv ├── demos │ ├── 01_hello_world │ │ ├── index.md │ │ ├── v1.md │ │ ├── v2.md │ │ ├── v3.md │ │ └── v4.md │ ├── 02_rolling_dice │ │ ├── averaging.md │ │ ├── grouping.md │ │ └── index.md │ ├── 03_countries.md │ ├── 04_todo │ │ ├── index.md │ │ ├── v1.md │ │ ├── v2.md │ │ ├── v3.md │ │ ├── v4.md │ │ ├── v5.md │ │ └── v6.md │ ├── 05_drawing.md │ ├── 06_city_database.md │ ├── 07_car_analysis.md │ ├── 08_movie_database.md │ ├── 09_word_frequencies.md │ ├── 10_ui_components │ │ ├── 01_ValuesInHtmlTable.md │ │ ├── 02_TableInHtmlTable.md │ │ ├── 03_SortedTableInHtmlTable.md │ │ ├── 04_SliceInHtmlTable.md │ │ ├── 05_RelationshipInHtmlTable.md │ │ ├── 06_ResultTableInHtmlTable.md │ │ ├── 07_ResultSortedTableInHtmlTable.md │ │ ├── 08_EditableValueView.md │ │ ├── 09_EditableCellView.md │ │ ├── 10_Inspector.md │ │ └── index.md │ ├── _tinydraw.md │ ├── _tinymovies.md │ └── index.md ├── extras │ ├── .nojekyll │ ├── CNAME │ ├── arch0.svg │ ├── arch1.svg │ ├── arch2.svg │ ├── arch3.svg │ ├── arch4.svg │ ├── arch5.svg │ ├── arch6.svg │ ├── arktype.svg │ ├── automerge.svg │ ├── browser.svg │ ├── bun.svg │ ├── car-analysis.webp │ ├── cloudflare.svg │ ├── common.svg │ ├── crsqlite.png │ ├── database.svg │ ├── durable.svg │ ├── effect.svg │ ├── electric.svg │ ├── expo.svg │ ├── favicon.png │ ├── favicon.svg │ ├── favicon_pad.png │ ├── indexeddb.svg │ ├── inspector.webp │ ├── local-first.svg │ ├── logotype.svg │ ├── movie-database.webp │ ├── partykit.gif │ ├── partykit.svg │ ├── pglite.svg │ ├── postgresql.svg │ ├── powersync.svg │ ├── react.svg │ ├── reactive.svg │ ├── sqlite.svg │ ├── store-inspector.webp │ ├── sync.svg │ ├── tinyrooms.webp │ ├── turso.svg │ ├── typebox.svg │ ├── ui-react-dom.webp │ ├── valibot.svg │ ├── vite-tinybase-2.png │ ├── vite-tinybase-sync.mov │ ├── vite-tinybase-sync.png │ ├── vite-tinybase.png │ ├── yjs.svg │ ├── youtube.webp │ ├── yup.svg │ └── zod.svg ├── fonts │ ├── inconsolata.woff2 │ ├── inter.woff2 │ └── shantell.woff2 ├── guides │ ├── 01_the_basics │ │ ├── 1_getting_started.md │ │ ├── 2_creating_a_store.md │ │ ├── 3_writing_to_stores.md │ │ ├── 4_reading_from_stores.md │ │ ├── 5_listening_to_stores.md │ │ ├── 6_transactions.md │ │ ├── 7_importing_tinybase.md │ │ ├── 8_tinybase_and_typescript.md │ │ ├── 9_architectural_options.md │ │ └── index.md │ ├── 02_building_uis │ │ ├── 1_getting_started_with_ui_react.md │ │ ├── 2_using_react_hooks.md │ │ ├── 3_using_react_components.md │ │ ├── 4_using_react_dom_components.md │ │ ├── 5_using_context.md │ │ └── index.md │ ├── 03_schemas │ │ ├── 1_using_schemas.md │ │ ├── 2_schema_based_typing.md │ │ ├── 3_mutating_data_with_listeners.md │ │ ├── 4_using_schematizers.md │ │ └── index.md │ ├── 04_persistence │ │ ├── 1_an_intro_to_persistence.md │ │ ├── 2_database_persistence.md │ │ ├── 3_third_party_crdt_persistence.md │ │ ├── 4_custom_persistence.md │ │ └── index.md │ ├── 05_synchronization │ │ ├── 1_using_a_mergeablestore.md │ │ ├── 2_using_a_synchronizer.md │ │ └── index.md │ ├── 06_integrations │ │ ├── 1_cloudflare_durable_objects.md │ │ └── index.md │ ├── 07_using_metrics │ │ ├── 1_an_intro_to_metrics.md │ │ ├── 2_building_a_ui_with_metrics.md │ │ ├── 3_advanced_metric_definition.md │ │ └── index.md │ ├── 08_using_indexes │ │ ├── 1_an_intro_to_indexes.md │ │ ├── 2_building_a_ui_with_indexes.md │ │ ├── 3_advanced_index_definition.md │ │ └── index.md │ ├── 09_using_relationships │ │ ├── 1_an_intro_to_relationships.md │ │ ├── 2_building_a_ui_with_relationships.md │ │ ├── 3_advanced_relationship_definitions.md │ │ └── index.md │ ├── 10_using_checkpoints │ │ ├── 1_an_intro_to_checkpoints.md │ │ ├── 2_building_a_ui_with_checkpoints.md │ │ └── index.md │ ├── 11_using_queries │ │ ├── 1_an_intro_to_queries.md │ │ ├── 2_tinyql.md │ │ ├── 3_building_a_ui_with_queries.md │ │ └── index.md │ ├── 12_inspecting_data.md │ ├── 13_how_tinybase_is_built │ │ ├── 1_developing_tinybase.md │ │ ├── 2_architecture.md │ │ ├── 3_testing.md │ │ ├── 4_documentation.md │ │ ├── 5_how_the_demos_work.md │ │ ├── 6_credits.md │ │ └── index.md │ ├── 14_faq.md │ ├── 15_agents.md │ ├── 16_releases.md │ ├── _making_queries │ │ ├── 1_using_queries.md │ │ ├── 2_tinyql.md │ │ ├── 3_building_a_ui_with_queries.md │ │ └── index.md │ ├── _metrics_and_indexes │ │ ├── 1_using_metrics.md │ │ ├── 2_building_a_ui_with_metrics.md │ │ ├── 3_advanced_metric_definition.md │ │ ├── 4_using_indexes.md │ │ ├── 5_building_a_ui_with_indexes.md │ │ ├── 6_advanced_index_definition.md │ │ └── index.md │ ├── _relationships_and_checkpoints │ │ ├── 1_using_relationships.md │ │ ├── 2_building_a_ui_with_relationships.md │ │ ├── 3_advanced_relationship_definitions.md │ │ ├── 4_using_checkpoints.md │ │ ├── 5_building_a_ui_with_checkpoints.md │ │ └── index.md │ ├── _schemas_and_persistence │ │ ├── 1_using_schemas.md │ │ ├── 2_schema_based_typing.md │ │ ├── 3_mutating_data_with_listeners.md │ │ ├── 4_persisting_data.md │ │ ├── 5_custom_persistence.md │ │ ├── 6_database_persistence.md │ │ ├── 7_synchronizing_data.md │ │ └── index.md │ └── index.md ├── home │ ├── .prettierrc │ └── index.md ├── js │ ├── app.ts │ ├── common │ │ ├── common.ts │ │ ├── dark.ts │ │ └── search.ts │ ├── home.ts │ ├── single.ts │ └── version.ts ├── less │ ├── article.less │ ├── header.less │ ├── home.less │ ├── index.less │ ├── layout.less │ ├── nav.less │ ├── pre.less │ ├── theme.less │ └── type.less ├── tsconfig.json └── ui │ ├── ArticleInner.tsx │ ├── BuildContext.tsx │ ├── ExecutablePen.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── Home.tsx │ ├── Main.tsx │ ├── MarkdownPage.tsx │ ├── NavJson.tsx │ ├── Page.tsx │ ├── Readme.tsx │ └── common.ts ├── src ├── @types │ ├── _internal │ │ ├── queries │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── store │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ └── ui-react │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── checkpoints │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── common │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── docs.js │ ├── index.d.ts │ ├── indexes │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── mergeable-store │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── metrics │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── omni │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── persisters │ │ ├── docs.js │ │ ├── index.d.ts │ │ ├── persister-automerge │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-browser │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-cr-sqlite-wasm │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-durable-object-sql-storage │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-durable-object-storage │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-electric-sql │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-expo-sqlite │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-file │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-indexed-db │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-libsql │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-partykit-client │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-partykit-server │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-pglite │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-postgres │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-powersync │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-react-native-mmkv │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-react-native-sqlite │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-remote │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-sqlite-bun │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-sqlite-wasm │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-sqlite3 │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── persister-yjs │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── queries │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── relationships │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── schematizers │ │ ├── docs.js │ │ ├── index.d.ts │ │ ├── schematizer-arktype │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── schematizer-effect │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── schematizer-typebox │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── schematizer-valibot │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── schematizer-yup │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── schematizer-zod │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── store │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── synchronizers │ │ ├── docs.js │ │ ├── index.d.ts │ │ ├── synchronizer-broadcast-channel │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── synchronizer-local │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── synchronizer-ws-client │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── synchronizer-ws-server-durable-object │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── synchronizer-ws-server-simple │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ ├── synchronizer-ws-server │ │ │ ├── docs.js │ │ │ ├── index.d.ts │ │ │ └── with-schemas │ │ │ │ └── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── ui-react-dom │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── ui-react-inspector │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ ├── ui-react │ │ ├── docs.js │ │ ├── index.d.ts │ │ └── with-schemas │ │ │ └── index.d.ts │ └── with-schemas │ │ └── index.d.ts ├── checkpoints │ └── index.ts ├── common │ ├── aggregators.ts │ ├── array.ts │ ├── cell.ts │ ├── codec.ts │ ├── coll.ts │ ├── definable.ts │ ├── hash.ts │ ├── hlc.ts │ ├── index.ts │ ├── json.ts │ ├── listeners.ts │ ├── map.ts │ ├── obj.ts │ ├── other.ts │ ├── pairs.ts │ ├── pool.ts │ ├── react.ts │ ├── set.ts │ ├── stamps.ts │ └── strings.ts ├── index.ts ├── indexes │ └── index.ts ├── mergeable-store │ └── index.ts ├── metrics │ └── index.ts ├── omni │ └── index.ts ├── persisters │ ├── common │ │ ├── create.ts │ │ ├── database │ │ │ ├── commands.ts │ │ │ ├── common.ts │ │ │ ├── config.ts │ │ │ ├── json.ts │ │ │ ├── postgresql.ts │ │ │ ├── sqlite.ts │ │ │ └── tabular.ts │ │ └── partykit.ts │ ├── index.ts │ ├── persister-automerge │ │ └── index.ts │ ├── persister-browser │ │ └── index.ts │ ├── persister-cr-sqlite-wasm │ │ └── index.ts │ ├── persister-durable-object-sql-storage │ │ └── index.ts │ ├── persister-durable-object-storage │ │ └── index.ts │ ├── persister-electric-sql │ │ └── index.ts │ ├── persister-expo-sqlite │ │ └── index.ts │ ├── persister-file │ │ └── index.ts │ ├── persister-indexed-db │ │ └── index.ts │ ├── persister-libsql │ │ └── index.ts │ ├── persister-partykit-client │ │ └── index.ts │ ├── persister-partykit-server │ │ └── index.ts │ ├── persister-pglite │ │ └── index.ts │ ├── persister-postgres │ │ └── index.ts │ ├── persister-powersync │ │ └── index.ts │ ├── persister-react-native-mmkv │ │ └── index.ts │ ├── persister-react-native-sqlite │ │ └── index.ts │ ├── persister-remote │ │ └── index.ts │ ├── persister-sqlite-bun │ │ └── index.ts │ ├── persister-sqlite-wasm │ │ └── index.ts │ ├── persister-sqlite3 │ │ └── index.ts │ └── persister-yjs │ │ └── index.ts ├── queries │ └── index.ts ├── relationships │ └── index.ts ├── schematizers │ ├── index.ts │ ├── schematizer-arktype │ │ └── index.ts │ ├── schematizer-effect │ │ └── index.ts │ ├── schematizer-typebox │ │ └── index.ts │ ├── schematizer-valibot │ │ └── index.ts │ ├── schematizer-yup │ │ └── index.ts │ └── schematizer-zod │ │ └── index.ts ├── store │ └── index.ts ├── synchronizers │ ├── common.ts │ ├── index.ts │ ├── synchronizer-broadcast-channel │ │ └── index.ts │ ├── synchronizer-local │ │ └── index.ts │ ├── synchronizer-ws-client │ │ └── index.ts │ ├── synchronizer-ws-server-durable-object │ │ └── index.ts │ ├── synchronizer-ws-server-simple │ │ └── index.ts │ └── synchronizer-ws-server │ │ └── index.ts ├── tsconfig.json ├── ui-react-dom │ ├── EditableCellView.tsx │ ├── EditableValueView.tsx │ ├── RelationshipInHtmlTable.tsx │ ├── ResultSortedTableInHtmlTable.tsx │ ├── ResultTableInHtmlTable.tsx │ ├── SliceInHtmlTable.tsx │ ├── SortedTableInHtmlTable.tsx │ ├── SortedTablePaginator.tsx │ ├── TableInHtmlTable.tsx │ ├── ValuesInHtmlTable.tsx │ ├── common │ │ ├── components.tsx │ │ ├── hooks.tsx │ │ └── index.tsx │ └── index.tsx ├── ui-react-inspector │ ├── Body.tsx │ ├── Details.tsx │ ├── ErrorBoundary.tsx │ ├── Header.tsx │ ├── IndexesView.tsx │ ├── MetricsView.tsx │ ├── Nub.tsx │ ├── Panel.tsx │ ├── QueriesView.tsx │ ├── RelationshipsView.tsx │ ├── StoreView.tsx │ ├── TablesView.tsx │ ├── ValuesView.tsx │ ├── actions │ │ ├── common.tsx │ │ ├── tables.tsx │ │ └── values.tsx │ ├── common.ts │ ├── index.tsx │ ├── style.ts │ ├── svg.ts │ └── types.ts └── ui-react │ ├── BackwardCheckpointsView.tsx │ ├── CellView.tsx │ ├── CheckpointView.tsx │ ├── CurrentCheckpointView.tsx │ ├── ForwardCheckpointsView.tsx │ ├── IndexView.tsx │ ├── LinkedRowsView.tsx │ ├── LocalRowsView.tsx │ ├── MetricView.tsx │ ├── Provider.tsx │ ├── RemoteRowView.tsx │ ├── ResultCellView.tsx │ ├── ResultRowView.tsx │ ├── ResultSortedTableView.tsx │ ├── ResultTableView.tsx │ ├── RowView.tsx │ ├── SliceView.tsx │ ├── SortedTableView.tsx │ ├── TableView.tsx │ ├── TablesView.tsx │ ├── ValueView.tsx │ ├── ValuesView.tsx │ ├── common │ ├── hooks.tsx │ ├── index.tsx │ └── wrap.tsx │ ├── context.ts │ ├── hooks.ts │ └── index.ts ├── support └── tinybase-demo-server │ ├── .dockerignore │ ├── Dockerfile │ ├── bun.lockb │ ├── fly.toml │ ├── index.ts │ └── package.json ├── test ├── e2e │ ├── common.ts │ ├── demos │ │ ├── car-analysis.test.ts │ │ ├── city-database.test.ts │ │ ├── countries.test.ts │ │ ├── drawing.test.ts │ │ ├── hello-world.test.ts │ │ ├── movie-database.test.ts │ │ ├── rolling-dice.test.ts │ │ ├── todo-app.test.ts │ │ ├── ui-components.test.ts │ │ └── word-frequencies.test.ts │ └── home.test.ts ├── perf │ ├── benchmark.test.ts │ ├── common.ts │ ├── indexes.test.ts │ ├── mergeable-store-create.test.ts │ ├── mergeable-store-grow.test.ts │ ├── metrics.test.ts │ ├── queries.test.ts │ ├── relationships.test.ts │ ├── store-create.test.ts │ └── store-grow.test.ts ├── prod │ ├── esm.ts │ └── imports.test.ts ├── scratch.ts ├── server.mjs ├── tsconfig.json ├── unit │ ├── common │ │ ├── automerge-adaptor.ts │ │ ├── expect.ts │ │ ├── listeners.ts │ │ ├── mergeable.ts │ │ ├── other.ts │ │ └── types.ts │ ├── core │ │ ├── other │ │ │ ├── checkpoints.test.ts │ │ │ ├── common.test.ts │ │ │ ├── indexes.test.ts │ │ │ ├── metrics.test.ts │ │ │ ├── queries.test.ts │ │ │ └── relationships.test.ts │ │ ├── store │ │ │ ├── __snapshots__ │ │ │ │ └── mergeable-store.test.ts.snap │ │ │ ├── mergeable-store.test.ts │ │ │ ├── store-advanced.test.ts │ │ │ ├── store-basics.test.ts │ │ │ ├── store-foolishness.test.tsx │ │ │ ├── store-listeners.test.ts │ │ │ ├── store-nulls.test.ts │ │ │ └── store-schema.test.ts │ │ ├── types │ │ │ ├── __snapshots__ │ │ │ │ └── types.test.tsx.snap │ │ │ ├── checkpoints.ts │ │ │ ├── indexes.ts │ │ │ ├── mergeable-store.ts │ │ │ ├── metrics.ts │ │ │ ├── persisters.ts │ │ │ ├── queries.ts │ │ │ ├── relationships.ts │ │ │ ├── store.ts │ │ │ ├── types.test.tsx │ │ │ ├── ui-react-dom.tsx │ │ │ └── ui-react.tsx │ │ └── ui-react │ │ │ ├── __snapshots__ │ │ │ └── ui-react-dom.test.tsx.snap │ │ │ ├── components.test.tsx │ │ │ ├── hooks.test.tsx │ │ │ ├── ui-react-dom.test.tsx │ │ │ └── ui-react-inspector.test.tsx │ ├── documentation.test.ts │ ├── persisters │ │ ├── __snapshots__ │ │ │ └── mergeable.test.ts.snap │ │ ├── automerge.test.ts │ │ ├── common │ │ │ ├── databases.ts │ │ │ ├── mocks.ts │ │ │ └── other.ts │ │ ├── database │ │ │ ├── json.test.ts │ │ │ ├── mergeable-json.test.ts │ │ │ └── tabular.test.ts │ │ ├── mergeable.test.ts │ │ ├── persisters.test.ts │ │ └── yjs.test.ts │ ├── schematizers │ │ ├── schematizer-arktype.test.ts │ │ ├── schematizer-effect.test.ts │ │ ├── schematizer-typebox.test.ts │ │ ├── schematizer-valibot.test.ts │ │ ├── schematizer-yup.test.ts │ │ └── schematizer-zod.test.ts │ └── synchronizers │ │ ├── __snapshots__ │ │ └── synchronizers.test.ts.snap │ │ ├── synchronizer-ws-server-simple.test.ts │ │ ├── synchronizer-ws-server.test.ts │ │ └── synchronizers.test.ts └── vitest │ ├── reporter.ts │ └── setup.ts └── vitest.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: jamesgpearce 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/betaSite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/.github/workflows/betaSite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | lib 4 | dist 5 | tmp 6 | node_modules 7 | npm-debug.log 8 | .partykit -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/LICENSE -------------------------------------------------------------------------------- /agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/agents.md -------------------------------------------------------------------------------- /coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/coverage.json -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/cspell.json -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | tinybase.org -------------------------------------------------------------------------------- /docs/api/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/all.html -------------------------------------------------------------------------------- /docs/api/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/article.html -------------------------------------------------------------------------------- /docs/api/checkpoints/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/article.html -------------------------------------------------------------------------------- /docs/api/checkpoints/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/functions/article.html -------------------------------------------------------------------------------- /docs/api/checkpoints/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/functions/index.html -------------------------------------------------------------------------------- /docs/api/checkpoints/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/functions/nav.json -------------------------------------------------------------------------------- /docs/api/checkpoints/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/index.html -------------------------------------------------------------------------------- /docs/api/checkpoints/interfaces/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/interfaces/article.html -------------------------------------------------------------------------------- /docs/api/checkpoints/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/checkpoints/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/checkpoints/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/nav.json -------------------------------------------------------------------------------- /docs/api/checkpoints/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/checkpoints/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/checkpoints/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/common/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/article.html -------------------------------------------------------------------------------- /docs/api/common/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/article.html -------------------------------------------------------------------------------- /docs/api/common/functions/hash/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/hash/article.html -------------------------------------------------------------------------------- /docs/api/common/functions/hash/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/hash/index.html -------------------------------------------------------------------------------- /docs/api/common/functions/hash/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/hash/nav.json -------------------------------------------------------------------------------- /docs/api/common/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/index.html -------------------------------------------------------------------------------- /docs/api/common/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/nav.json -------------------------------------------------------------------------------- /docs/api/common/functions/stamps/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/stamps/article.html -------------------------------------------------------------------------------- /docs/api/common/functions/stamps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/stamps/index.html -------------------------------------------------------------------------------- /docs/api/common/functions/stamps/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/functions/stamps/nav.json -------------------------------------------------------------------------------- /docs/api/common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/index.html -------------------------------------------------------------------------------- /docs/api/common/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/nav.json -------------------------------------------------------------------------------- /docs/api/common/type-aliases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/type-aliases/article.html -------------------------------------------------------------------------------- /docs/api/common/type-aliases/general/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/type-aliases/general/nav.json -------------------------------------------------------------------------------- /docs/api/common/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/common/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/common/type-aliases/stamps/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/common/type-aliases/stamps/nav.json -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/indexes/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/article.html -------------------------------------------------------------------------------- /docs/api/indexes/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/functions/article.html -------------------------------------------------------------------------------- /docs/api/indexes/functions/creation/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/functions/creation/nav.json -------------------------------------------------------------------------------- /docs/api/indexes/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/functions/index.html -------------------------------------------------------------------------------- /docs/api/indexes/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/functions/nav.json -------------------------------------------------------------------------------- /docs/api/indexes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/index.html -------------------------------------------------------------------------------- /docs/api/indexes/interfaces/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/interfaces/article.html -------------------------------------------------------------------------------- /docs/api/indexes/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/indexes/interfaces/indexes/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/interfaces/indexes/nav.json -------------------------------------------------------------------------------- /docs/api/indexes/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/indexes/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/nav.json -------------------------------------------------------------------------------- /docs/api/indexes/type-aliases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/type-aliases/article.html -------------------------------------------------------------------------------- /docs/api/indexes/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/indexes/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/indexes/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/mergeable-store/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/mergeable-store/article.html -------------------------------------------------------------------------------- /docs/api/mergeable-store/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/mergeable-store/functions/index.html -------------------------------------------------------------------------------- /docs/api/mergeable-store/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/mergeable-store/functions/nav.json -------------------------------------------------------------------------------- /docs/api/mergeable-store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/mergeable-store/index.html -------------------------------------------------------------------------------- /docs/api/mergeable-store/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/mergeable-store/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/mergeable-store/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/mergeable-store/nav.json -------------------------------------------------------------------------------- /docs/api/metrics/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/article.html -------------------------------------------------------------------------------- /docs/api/metrics/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/functions/article.html -------------------------------------------------------------------------------- /docs/api/metrics/functions/creation/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/functions/creation/nav.json -------------------------------------------------------------------------------- /docs/api/metrics/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/functions/index.html -------------------------------------------------------------------------------- /docs/api/metrics/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/functions/nav.json -------------------------------------------------------------------------------- /docs/api/metrics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/index.html -------------------------------------------------------------------------------- /docs/api/metrics/interfaces/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/interfaces/article.html -------------------------------------------------------------------------------- /docs/api/metrics/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/metrics/interfaces/metrics/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/interfaces/metrics/nav.json -------------------------------------------------------------------------------- /docs/api/metrics/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/metrics/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/nav.json -------------------------------------------------------------------------------- /docs/api/metrics/type-aliases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/type-aliases/article.html -------------------------------------------------------------------------------- /docs/api/metrics/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/metrics/type-aliases/metric/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/type-aliases/metric/nav.json -------------------------------------------------------------------------------- /docs/api/metrics/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/metrics/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/nav.json -------------------------------------------------------------------------------- /docs/api/persister-automerge/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-automerge/article.html -------------------------------------------------------------------------------- /docs/api/persister-automerge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-automerge/index.html -------------------------------------------------------------------------------- /docs/api/persister-automerge/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-automerge/nav.json -------------------------------------------------------------------------------- /docs/api/persister-browser/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-browser/article.html -------------------------------------------------------------------------------- /docs/api/persister-browser/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-browser/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persister-browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-browser/index.html -------------------------------------------------------------------------------- /docs/api/persister-browser/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-browser/nav.json -------------------------------------------------------------------------------- /docs/api/persister-cr-sqlite-wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-cr-sqlite-wasm/index.html -------------------------------------------------------------------------------- /docs/api/persister-cr-sqlite-wasm/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-cr-sqlite-wasm/nav.json -------------------------------------------------------------------------------- /docs/api/persister-electric-sql/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-electric-sql/article.html -------------------------------------------------------------------------------- /docs/api/persister-electric-sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-electric-sql/index.html -------------------------------------------------------------------------------- /docs/api/persister-electric-sql/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-electric-sql/nav.json -------------------------------------------------------------------------------- /docs/api/persister-expo-sqlite/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-expo-sqlite/article.html -------------------------------------------------------------------------------- /docs/api/persister-expo-sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-expo-sqlite/index.html -------------------------------------------------------------------------------- /docs/api/persister-expo-sqlite/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-expo-sqlite/nav.json -------------------------------------------------------------------------------- /docs/api/persister-file/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-file/article.html -------------------------------------------------------------------------------- /docs/api/persister-file/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-file/functions/index.html -------------------------------------------------------------------------------- /docs/api/persister-file/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-file/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persister-file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-file/index.html -------------------------------------------------------------------------------- /docs/api/persister-file/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-file/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/persister-file/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-file/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/persister-file/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-file/nav.json -------------------------------------------------------------------------------- /docs/api/persister-indexed-db/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-indexed-db/article.html -------------------------------------------------------------------------------- /docs/api/persister-indexed-db/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-indexed-db/index.html -------------------------------------------------------------------------------- /docs/api/persister-indexed-db/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-indexed-db/nav.json -------------------------------------------------------------------------------- /docs/api/persister-libsql/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-libsql/article.html -------------------------------------------------------------------------------- /docs/api/persister-libsql/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-libsql/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persister-libsql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-libsql/index.html -------------------------------------------------------------------------------- /docs/api/persister-libsql/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-libsql/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/persister-libsql/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-libsql/nav.json -------------------------------------------------------------------------------- /docs/api/persister-partykit-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-partykit-client/index.html -------------------------------------------------------------------------------- /docs/api/persister-partykit-client/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-partykit-client/nav.json -------------------------------------------------------------------------------- /docs/api/persister-partykit-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-partykit-server/index.html -------------------------------------------------------------------------------- /docs/api/persister-partykit-server/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-partykit-server/nav.json -------------------------------------------------------------------------------- /docs/api/persister-pglite/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-pglite/article.html -------------------------------------------------------------------------------- /docs/api/persister-pglite/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-pglite/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persister-pglite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-pglite/index.html -------------------------------------------------------------------------------- /docs/api/persister-pglite/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-pglite/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/persister-pglite/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-pglite/nav.json -------------------------------------------------------------------------------- /docs/api/persister-postgres/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-postgres/article.html -------------------------------------------------------------------------------- /docs/api/persister-postgres/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-postgres/index.html -------------------------------------------------------------------------------- /docs/api/persister-postgres/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-postgres/nav.json -------------------------------------------------------------------------------- /docs/api/persister-powersync/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-powersync/article.html -------------------------------------------------------------------------------- /docs/api/persister-powersync/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-powersync/index.html -------------------------------------------------------------------------------- /docs/api/persister-powersync/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-powersync/nav.json -------------------------------------------------------------------------------- /docs/api/persister-react-native-mmkv/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-react-native-mmkv/nav.json -------------------------------------------------------------------------------- /docs/api/persister-remote/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-remote/article.html -------------------------------------------------------------------------------- /docs/api/persister-remote/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-remote/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persister-remote/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-remote/index.html -------------------------------------------------------------------------------- /docs/api/persister-remote/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-remote/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/persister-remote/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-remote/nav.json -------------------------------------------------------------------------------- /docs/api/persister-sqlite-bun/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite-bun/article.html -------------------------------------------------------------------------------- /docs/api/persister-sqlite-bun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite-bun/index.html -------------------------------------------------------------------------------- /docs/api/persister-sqlite-bun/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite-bun/nav.json -------------------------------------------------------------------------------- /docs/api/persister-sqlite-wasm/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite-wasm/article.html -------------------------------------------------------------------------------- /docs/api/persister-sqlite-wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite-wasm/index.html -------------------------------------------------------------------------------- /docs/api/persister-sqlite-wasm/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite-wasm/nav.json -------------------------------------------------------------------------------- /docs/api/persister-sqlite3/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite3/article.html -------------------------------------------------------------------------------- /docs/api/persister-sqlite3/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite3/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persister-sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite3/index.html -------------------------------------------------------------------------------- /docs/api/persister-sqlite3/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-sqlite3/nav.json -------------------------------------------------------------------------------- /docs/api/persister-yjs/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/article.html -------------------------------------------------------------------------------- /docs/api/persister-yjs/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/functions/article.html -------------------------------------------------------------------------------- /docs/api/persister-yjs/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/functions/index.html -------------------------------------------------------------------------------- /docs/api/persister-yjs/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persister-yjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/index.html -------------------------------------------------------------------------------- /docs/api/persister-yjs/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/persister-yjs/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/persister-yjs/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persister-yjs/nav.json -------------------------------------------------------------------------------- /docs/api/persisters/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/article.html -------------------------------------------------------------------------------- /docs/api/persisters/enumerations/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/enumerations/article.html -------------------------------------------------------------------------------- /docs/api/persisters/enumerations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/enumerations/index.html -------------------------------------------------------------------------------- /docs/api/persisters/enumerations/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/enumerations/nav.json -------------------------------------------------------------------------------- /docs/api/persisters/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/functions/article.html -------------------------------------------------------------------------------- /docs/api/persisters/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/functions/index.html -------------------------------------------------------------------------------- /docs/api/persisters/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/functions/nav.json -------------------------------------------------------------------------------- /docs/api/persisters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/index.html -------------------------------------------------------------------------------- /docs/api/persisters/interfaces/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/interfaces/article.html -------------------------------------------------------------------------------- /docs/api/persisters/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/persisters/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/persisters/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/nav.json -------------------------------------------------------------------------------- /docs/api/persisters/type-aliases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/type-aliases/article.html -------------------------------------------------------------------------------- /docs/api/persisters/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/persisters/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/persisters/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/queries/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/article.html -------------------------------------------------------------------------------- /docs/api/queries/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/functions/article.html -------------------------------------------------------------------------------- /docs/api/queries/functions/creation/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/functions/creation/nav.json -------------------------------------------------------------------------------- /docs/api/queries/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/functions/index.html -------------------------------------------------------------------------------- /docs/api/queries/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/functions/nav.json -------------------------------------------------------------------------------- /docs/api/queries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/index.html -------------------------------------------------------------------------------- /docs/api/queries/interfaces/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/interfaces/article.html -------------------------------------------------------------------------------- /docs/api/queries/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/queries/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/queries/interfaces/queries/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/interfaces/queries/nav.json -------------------------------------------------------------------------------- /docs/api/queries/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/nav.json -------------------------------------------------------------------------------- /docs/api/queries/type-aliases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/type-aliases/article.html -------------------------------------------------------------------------------- /docs/api/queries/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/queries/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/queries/type-aliases/params/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/type-aliases/params/nav.json -------------------------------------------------------------------------------- /docs/api/queries/type-aliases/result/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/queries/type-aliases/result/nav.json -------------------------------------------------------------------------------- /docs/api/relationships/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/article.html -------------------------------------------------------------------------------- /docs/api/relationships/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/functions/article.html -------------------------------------------------------------------------------- /docs/api/relationships/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/functions/index.html -------------------------------------------------------------------------------- /docs/api/relationships/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/functions/nav.json -------------------------------------------------------------------------------- /docs/api/relationships/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/index.html -------------------------------------------------------------------------------- /docs/api/relationships/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/relationships/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/relationships/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/nav.json -------------------------------------------------------------------------------- /docs/api/relationships/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/relationships/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-arktype/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-arktype/article.html -------------------------------------------------------------------------------- /docs/api/schematizer-arktype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-arktype/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-arktype/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-arktype/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-effect/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-effect/article.html -------------------------------------------------------------------------------- /docs/api/schematizer-effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-effect/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-effect/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-effect/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-typebox/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-typebox/article.html -------------------------------------------------------------------------------- /docs/api/schematizer-typebox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-typebox/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-typebox/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-typebox/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-valibot/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-valibot/article.html -------------------------------------------------------------------------------- /docs/api/schematizer-valibot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-valibot/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-valibot/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-valibot/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-yup/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-yup/article.html -------------------------------------------------------------------------------- /docs/api/schematizer-yup/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-yup/functions/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-yup/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-yup/functions/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-yup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-yup/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-yup/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-yup/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-yup/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-yup/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-zod/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-zod/article.html -------------------------------------------------------------------------------- /docs/api/schematizer-zod/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-zod/functions/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-zod/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-zod/functions/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-zod/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-zod/index.html -------------------------------------------------------------------------------- /docs/api/schematizer-zod/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-zod/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/schematizer-zod/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizer-zod/nav.json -------------------------------------------------------------------------------- /docs/api/schematizers/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/article.html -------------------------------------------------------------------------------- /docs/api/schematizers/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/functions/article.html -------------------------------------------------------------------------------- /docs/api/schematizers/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/functions/index.html -------------------------------------------------------------------------------- /docs/api/schematizers/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/functions/nav.json -------------------------------------------------------------------------------- /docs/api/schematizers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/index.html -------------------------------------------------------------------------------- /docs/api/schematizers/interfaces/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/interfaces/article.html -------------------------------------------------------------------------------- /docs/api/schematizers/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/schematizers/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/schematizers/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/schematizers/nav.json -------------------------------------------------------------------------------- /docs/api/store/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/article.html -------------------------------------------------------------------------------- /docs/api/store/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/functions/article.html -------------------------------------------------------------------------------- /docs/api/store/functions/creation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/functions/creation/index.html -------------------------------------------------------------------------------- /docs/api/store/functions/creation/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/functions/creation/nav.json -------------------------------------------------------------------------------- /docs/api/store/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/functions/index.html -------------------------------------------------------------------------------- /docs/api/store/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/functions/nav.json -------------------------------------------------------------------------------- /docs/api/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/index.html -------------------------------------------------------------------------------- /docs/api/store/interfaces/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/interfaces/article.html -------------------------------------------------------------------------------- /docs/api/store/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/store/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/store/interfaces/store/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/interfaces/store/article.html -------------------------------------------------------------------------------- /docs/api/store/interfaces/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/interfaces/store/index.html -------------------------------------------------------------------------------- /docs/api/store/interfaces/store/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/interfaces/store/nav.json -------------------------------------------------------------------------------- /docs/api/store/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/nav.json -------------------------------------------------------------------------------- /docs/api/store/type-aliases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/article.html -------------------------------------------------------------------------------- /docs/api/store/type-aliases/callback/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/callback/nav.json -------------------------------------------------------------------------------- /docs/api/store/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/store/type-aliases/listener/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/listener/nav.json -------------------------------------------------------------------------------- /docs/api/store/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/store/type-aliases/schema/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/schema/index.html -------------------------------------------------------------------------------- /docs/api/store/type-aliases/schema/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/schema/nav.json -------------------------------------------------------------------------------- /docs/api/store/type-aliases/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/store/index.html -------------------------------------------------------------------------------- /docs/api/store/type-aliases/store/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/store/type-aliases/store/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizer-local/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-local/article.html -------------------------------------------------------------------------------- /docs/api/synchronizer-local/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-local/index.html -------------------------------------------------------------------------------- /docs/api/synchronizer-local/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-local/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizer-ws-client/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-ws-client/article.html -------------------------------------------------------------------------------- /docs/api/synchronizer-ws-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-ws-client/index.html -------------------------------------------------------------------------------- /docs/api/synchronizer-ws-client/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-ws-client/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizer-ws-server/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-ws-server/article.html -------------------------------------------------------------------------------- /docs/api/synchronizer-ws-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-ws-server/index.html -------------------------------------------------------------------------------- /docs/api/synchronizer-ws-server/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizer-ws-server/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizers/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/article.html -------------------------------------------------------------------------------- /docs/api/synchronizers/enumerations/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/enumerations/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizers/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/functions/article.html -------------------------------------------------------------------------------- /docs/api/synchronizers/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/functions/index.html -------------------------------------------------------------------------------- /docs/api/synchronizers/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/functions/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/index.html -------------------------------------------------------------------------------- /docs/api/synchronizers/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/interfaces/index.html -------------------------------------------------------------------------------- /docs/api/synchronizers/interfaces/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/interfaces/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizers/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/nav.json -------------------------------------------------------------------------------- /docs/api/synchronizers/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/synchronizers/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/the-essentials/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/the-essentials/article.html -------------------------------------------------------------------------------- /docs/api/the-essentials/getting-data/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/the-essentials/getting-data/nav.json -------------------------------------------------------------------------------- /docs/api/the-essentials/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/the-essentials/index.html -------------------------------------------------------------------------------- /docs/api/the-essentials/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/the-essentials/nav.json -------------------------------------------------------------------------------- /docs/api/the-essentials/setting-data/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/the-essentials/setting-data/nav.json -------------------------------------------------------------------------------- /docs/api/the-essentials/using-react/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/the-essentials/using-react/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react-dom/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/article.html -------------------------------------------------------------------------------- /docs/api/ui-react-dom/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/functions/article.html -------------------------------------------------------------------------------- /docs/api/ui-react-dom/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/functions/index.html -------------------------------------------------------------------------------- /docs/api/ui-react-dom/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/functions/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react-dom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/index.html -------------------------------------------------------------------------------- /docs/api/ui-react-dom/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react-dom/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/ui-react-dom/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-dom/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react-inspector/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-inspector/article.html -------------------------------------------------------------------------------- /docs/api/ui-react-inspector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-inspector/index.html -------------------------------------------------------------------------------- /docs/api/ui-react-inspector/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react-inspector/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/article.html -------------------------------------------------------------------------------- /docs/api/ui-react/functions/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/functions/article.html -------------------------------------------------------------------------------- /docs/api/ui-react/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/functions/index.html -------------------------------------------------------------------------------- /docs/api/ui-react/functions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/functions/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/index.html -------------------------------------------------------------------------------- /docs/api/ui-react/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react/type-aliases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/type-aliases/article.html -------------------------------------------------------------------------------- /docs/api/ui-react/type-aliases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/type-aliases/index.html -------------------------------------------------------------------------------- /docs/api/ui-react/type-aliases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/type-aliases/nav.json -------------------------------------------------------------------------------- /docs/api/ui-react/type-aliases/props/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/api/ui-react/type-aliases/props/nav.json -------------------------------------------------------------------------------- /docs/arch0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arch0.svg -------------------------------------------------------------------------------- /docs/arch1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arch1.svg -------------------------------------------------------------------------------- /docs/arch2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arch2.svg -------------------------------------------------------------------------------- /docs/arch3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arch3.svg -------------------------------------------------------------------------------- /docs/arch4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arch4.svg -------------------------------------------------------------------------------- /docs/arch5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arch5.svg -------------------------------------------------------------------------------- /docs/arch6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arch6.svg -------------------------------------------------------------------------------- /docs/arktype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/arktype.svg -------------------------------------------------------------------------------- /docs/assets/cars.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/cars.tsv -------------------------------------------------------------------------------- /docs/assets/cast.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/cast.tsv -------------------------------------------------------------------------------- /docs/assets/cities.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/cities.tsv -------------------------------------------------------------------------------- /docs/assets/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/countries.json -------------------------------------------------------------------------------- /docs/assets/genres.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/genres.tsv -------------------------------------------------------------------------------- /docs/assets/movies.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/movies.tsv -------------------------------------------------------------------------------- /docs/assets/people.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/people.tsv -------------------------------------------------------------------------------- /docs/assets/words.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/assets/words.tsv -------------------------------------------------------------------------------- /docs/automerge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/automerge.svg -------------------------------------------------------------------------------- /docs/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/browser.svg -------------------------------------------------------------------------------- /docs/bun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/bun.svg -------------------------------------------------------------------------------- /docs/car-analysis.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/car-analysis.webp -------------------------------------------------------------------------------- /docs/cloudflare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/cloudflare.svg -------------------------------------------------------------------------------- /docs/common.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/common.svg -------------------------------------------------------------------------------- /docs/crsqlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/crsqlite.png -------------------------------------------------------------------------------- /docs/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/css/index.css -------------------------------------------------------------------------------- /docs/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/database.svg -------------------------------------------------------------------------------- /docs/demos/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/article.html -------------------------------------------------------------------------------- /docs/demos/car-analysis/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/car-analysis/article.html -------------------------------------------------------------------------------- /docs/demos/car-analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/car-analysis/index.html -------------------------------------------------------------------------------- /docs/demos/car-analysis/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/car-analysis/nav.json -------------------------------------------------------------------------------- /docs/demos/car-analysis/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/car-analysis/pen.json -------------------------------------------------------------------------------- /docs/demos/city-database/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/city-database/article.html -------------------------------------------------------------------------------- /docs/demos/city-database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/city-database/index.html -------------------------------------------------------------------------------- /docs/demos/city-database/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/city-database/nav.json -------------------------------------------------------------------------------- /docs/demos/city-database/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/city-database/pen.json -------------------------------------------------------------------------------- /docs/demos/countries/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/countries/article.html -------------------------------------------------------------------------------- /docs/demos/countries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/countries/index.html -------------------------------------------------------------------------------- /docs/demos/countries/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/countries/nav.json -------------------------------------------------------------------------------- /docs/demos/countries/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/countries/pen.json -------------------------------------------------------------------------------- /docs/demos/drawing/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/drawing/article.html -------------------------------------------------------------------------------- /docs/demos/drawing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/drawing/index.html -------------------------------------------------------------------------------- /docs/demos/drawing/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/drawing/nav.json -------------------------------------------------------------------------------- /docs/demos/drawing/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/drawing/pen.json -------------------------------------------------------------------------------- /docs/demos/hello-world/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/hello-world/article.html -------------------------------------------------------------------------------- /docs/demos/hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/hello-world/index.html -------------------------------------------------------------------------------- /docs/demos/hello-world/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/hello-world/nav.json -------------------------------------------------------------------------------- /docs/demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/index.html -------------------------------------------------------------------------------- /docs/demos/movie-database/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/movie-database/article.html -------------------------------------------------------------------------------- /docs/demos/movie-database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/movie-database/index.html -------------------------------------------------------------------------------- /docs/demos/movie-database/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/movie-database/nav.json -------------------------------------------------------------------------------- /docs/demos/movie-database/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/movie-database/pen.json -------------------------------------------------------------------------------- /docs/demos/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/nav.json -------------------------------------------------------------------------------- /docs/demos/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/pen.json -------------------------------------------------------------------------------- /docs/demos/rolling-dice/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/rolling-dice/article.html -------------------------------------------------------------------------------- /docs/demos/rolling-dice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/rolling-dice/index.html -------------------------------------------------------------------------------- /docs/demos/rolling-dice/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/rolling-dice/nav.json -------------------------------------------------------------------------------- /docs/demos/tinydraw/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/tinydraw/article.html -------------------------------------------------------------------------------- /docs/demos/tinydraw/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/demos/tinydraw/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/tinydraw/nav.json -------------------------------------------------------------------------------- /docs/demos/tinymovies/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/tinymovies/article.html -------------------------------------------------------------------------------- /docs/demos/tinymovies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/tinymovies/index.html -------------------------------------------------------------------------------- /docs/demos/tinymovies/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/tinymovies/nav.json -------------------------------------------------------------------------------- /docs/demos/todo-app/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/todo-app/article.html -------------------------------------------------------------------------------- /docs/demos/todo-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/todo-app/index.html -------------------------------------------------------------------------------- /docs/demos/todo-app/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/todo-app/nav.json -------------------------------------------------------------------------------- /docs/demos/ui-components/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/ui-components/article.html -------------------------------------------------------------------------------- /docs/demos/ui-components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/ui-components/index.html -------------------------------------------------------------------------------- /docs/demos/ui-components/inspector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/ui-components/inspector/index.html -------------------------------------------------------------------------------- /docs/demos/ui-components/inspector/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/ui-components/inspector/nav.json -------------------------------------------------------------------------------- /docs/demos/ui-components/inspector/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/ui-components/inspector/pen.json -------------------------------------------------------------------------------- /docs/demos/ui-components/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/ui-components/nav.json -------------------------------------------------------------------------------- /docs/demos/word-frequencies/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/word-frequencies/article.html -------------------------------------------------------------------------------- /docs/demos/word-frequencies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/word-frequencies/index.html -------------------------------------------------------------------------------- /docs/demos/word-frequencies/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/word-frequencies/nav.json -------------------------------------------------------------------------------- /docs/demos/word-frequencies/pen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/demos/word-frequencies/pen.json -------------------------------------------------------------------------------- /docs/durable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/durable.svg -------------------------------------------------------------------------------- /docs/effect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/effect.svg -------------------------------------------------------------------------------- /docs/electric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/electric.svg -------------------------------------------------------------------------------- /docs/expo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/expo.svg -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/favicon_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/favicon_pad.png -------------------------------------------------------------------------------- /docs/fonts/inconsolata.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/fonts/inconsolata.woff2 -------------------------------------------------------------------------------- /docs/fonts/inter.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/fonts/inter.woff2 -------------------------------------------------------------------------------- /docs/fonts/shantell.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/fonts/shantell.woff2 -------------------------------------------------------------------------------- /docs/guides/agents-guide/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/agents-guide/article.html -------------------------------------------------------------------------------- /docs/guides/agents-guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/agents-guide/index.html -------------------------------------------------------------------------------- /docs/guides/agents-guide/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/agents-guide/nav.json -------------------------------------------------------------------------------- /docs/guides/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/article.html -------------------------------------------------------------------------------- /docs/guides/building-uis/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/building-uis/article.html -------------------------------------------------------------------------------- /docs/guides/building-uis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/building-uis/index.html -------------------------------------------------------------------------------- /docs/guides/building-uis/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/building-uis/nav.json -------------------------------------------------------------------------------- /docs/guides/faq/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/faq/article.html -------------------------------------------------------------------------------- /docs/guides/faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/faq/index.html -------------------------------------------------------------------------------- /docs/guides/faq/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/faq/nav.json -------------------------------------------------------------------------------- /docs/guides/how-tinybase-is-built/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/how-tinybase-is-built/index.html -------------------------------------------------------------------------------- /docs/guides/how-tinybase-is-built/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/how-tinybase-is-built/nav.json -------------------------------------------------------------------------------- /docs/guides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/index.html -------------------------------------------------------------------------------- /docs/guides/inspecting-data/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/inspecting-data/article.html -------------------------------------------------------------------------------- /docs/guides/inspecting-data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/inspecting-data/index.html -------------------------------------------------------------------------------- /docs/guides/inspecting-data/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/inspecting-data/nav.json -------------------------------------------------------------------------------- /docs/guides/integrations/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/integrations/article.html -------------------------------------------------------------------------------- /docs/guides/integrations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/integrations/index.html -------------------------------------------------------------------------------- /docs/guides/integrations/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/integrations/nav.json -------------------------------------------------------------------------------- /docs/guides/making-queries/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/making-queries/article.html -------------------------------------------------------------------------------- /docs/guides/making-queries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/making-queries/index.html -------------------------------------------------------------------------------- /docs/guides/making-queries/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/making-queries/nav.json -------------------------------------------------------------------------------- /docs/guides/making-queries/tinyql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/making-queries/tinyql/index.html -------------------------------------------------------------------------------- /docs/guides/making-queries/tinyql/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/making-queries/tinyql/nav.json -------------------------------------------------------------------------------- /docs/guides/metrics-and-indexes/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/metrics-and-indexes/article.html -------------------------------------------------------------------------------- /docs/guides/metrics-and-indexes/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guides/metrics-and-indexes/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/metrics-and-indexes/nav.json -------------------------------------------------------------------------------- /docs/guides/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/nav.json -------------------------------------------------------------------------------- /docs/guides/persistence/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/persistence/article.html -------------------------------------------------------------------------------- /docs/guides/persistence/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/persistence/index.html -------------------------------------------------------------------------------- /docs/guides/persistence/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/persistence/nav.json -------------------------------------------------------------------------------- /docs/guides/releases/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/releases/article.html -------------------------------------------------------------------------------- /docs/guides/releases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/releases/index.html -------------------------------------------------------------------------------- /docs/guides/releases/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/releases/nav.json -------------------------------------------------------------------------------- /docs/guides/schemas-and-persistence/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guides/schemas-and-persistence/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/schemas-and-persistence/nav.json -------------------------------------------------------------------------------- /docs/guides/schemas/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/schemas/article.html -------------------------------------------------------------------------------- /docs/guides/schemas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/schemas/index.html -------------------------------------------------------------------------------- /docs/guides/schemas/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/schemas/nav.json -------------------------------------------------------------------------------- /docs/guides/schemas/using-schemas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/schemas/using-schemas/index.html -------------------------------------------------------------------------------- /docs/guides/schemas/using-schemas/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/schemas/using-schemas/nav.json -------------------------------------------------------------------------------- /docs/guides/synchronization/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/synchronization/article.html -------------------------------------------------------------------------------- /docs/guides/synchronization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/synchronization/index.html -------------------------------------------------------------------------------- /docs/guides/synchronization/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/synchronization/nav.json -------------------------------------------------------------------------------- /docs/guides/the-basics/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/the-basics/article.html -------------------------------------------------------------------------------- /docs/guides/the-basics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/the-basics/index.html -------------------------------------------------------------------------------- /docs/guides/the-basics/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/the-basics/nav.json -------------------------------------------------------------------------------- /docs/guides/the-basics/transactions/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/the-basics/transactions/nav.json -------------------------------------------------------------------------------- /docs/guides/using-checkpoints/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-checkpoints/article.html -------------------------------------------------------------------------------- /docs/guides/using-checkpoints/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-checkpoints/index.html -------------------------------------------------------------------------------- /docs/guides/using-checkpoints/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-checkpoints/nav.json -------------------------------------------------------------------------------- /docs/guides/using-indexes/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-indexes/article.html -------------------------------------------------------------------------------- /docs/guides/using-indexes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-indexes/index.html -------------------------------------------------------------------------------- /docs/guides/using-indexes/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-indexes/nav.json -------------------------------------------------------------------------------- /docs/guides/using-metrics/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-metrics/article.html -------------------------------------------------------------------------------- /docs/guides/using-metrics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-metrics/index.html -------------------------------------------------------------------------------- /docs/guides/using-metrics/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-metrics/nav.json -------------------------------------------------------------------------------- /docs/guides/using-queries/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-queries/article.html -------------------------------------------------------------------------------- /docs/guides/using-queries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-queries/index.html -------------------------------------------------------------------------------- /docs/guides/using-queries/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-queries/nav.json -------------------------------------------------------------------------------- /docs/guides/using-queries/tinyql/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-queries/tinyql/article.html -------------------------------------------------------------------------------- /docs/guides/using-queries/tinyql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-queries/tinyql/index.html -------------------------------------------------------------------------------- /docs/guides/using-queries/tinyql/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-queries/tinyql/nav.json -------------------------------------------------------------------------------- /docs/guides/using-relationships/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-relationships/article.html -------------------------------------------------------------------------------- /docs/guides/using-relationships/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-relationships/index.html -------------------------------------------------------------------------------- /docs/guides/using-relationships/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/guides/using-relationships/nav.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/indexeddb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/indexeddb.svg -------------------------------------------------------------------------------- /docs/inspector.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/inspector.webp -------------------------------------------------------------------------------- /docs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/js/app.js -------------------------------------------------------------------------------- /docs/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/js/home.js -------------------------------------------------------------------------------- /docs/js/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/js/single.js -------------------------------------------------------------------------------- /docs/local-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/local-first.svg -------------------------------------------------------------------------------- /docs/logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/logotype.svg -------------------------------------------------------------------------------- /docs/movie-database.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/movie-database.webp -------------------------------------------------------------------------------- /docs/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/nav.json -------------------------------------------------------------------------------- /docs/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/pages.json -------------------------------------------------------------------------------- /docs/partykit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/partykit.gif -------------------------------------------------------------------------------- /docs/partykit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/partykit.svg -------------------------------------------------------------------------------- /docs/pglite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/pglite.svg -------------------------------------------------------------------------------- /docs/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/postgresql.svg -------------------------------------------------------------------------------- /docs/powersync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/powersync.svg -------------------------------------------------------------------------------- /docs/pseudo.esm.sh/tinybase@7.2.0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/pseudo.esm.sh/tinybase@7.2.0/index.js -------------------------------------------------------------------------------- /docs/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/react.svg -------------------------------------------------------------------------------- /docs/reactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/reactive.svg -------------------------------------------------------------------------------- /docs/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/sqlite.svg -------------------------------------------------------------------------------- /docs/store-inspector.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/store-inspector.webp -------------------------------------------------------------------------------- /docs/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/sync.svg -------------------------------------------------------------------------------- /docs/tinyrooms.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/tinyrooms.webp -------------------------------------------------------------------------------- /docs/turso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/turso.svg -------------------------------------------------------------------------------- /docs/typebox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/typebox.svg -------------------------------------------------------------------------------- /docs/ui-react-dom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/ui-react-dom.webp -------------------------------------------------------------------------------- /docs/valibot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/valibot.svg -------------------------------------------------------------------------------- /docs/vite-tinybase-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/vite-tinybase-2.png -------------------------------------------------------------------------------- /docs/vite-tinybase-sync.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/vite-tinybase-sync.mov -------------------------------------------------------------------------------- /docs/vite-tinybase-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/vite-tinybase-sync.png -------------------------------------------------------------------------------- /docs/vite-tinybase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/vite-tinybase.png -------------------------------------------------------------------------------- /docs/yjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/yjs.svg -------------------------------------------------------------------------------- /docs/youtube.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/youtube.webp -------------------------------------------------------------------------------- /docs/yup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/yup.svg -------------------------------------------------------------------------------- /docs/zod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/docs/zod.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/eslint.config.js -------------------------------------------------------------------------------- /gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/gulpfile.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/readme.md -------------------------------------------------------------------------------- /releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/releases.md -------------------------------------------------------------------------------- /site/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/build.ts -------------------------------------------------------------------------------- /site/data/cars.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/data/cars.tsv -------------------------------------------------------------------------------- /site/data/cast.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/data/cast.tsv -------------------------------------------------------------------------------- /site/data/cities.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/data/cities.tsv -------------------------------------------------------------------------------- /site/data/genres.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/data/genres.tsv -------------------------------------------------------------------------------- /site/data/movies.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/data/movies.tsv -------------------------------------------------------------------------------- /site/data/people.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/data/people.tsv -------------------------------------------------------------------------------- /site/data/words.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/data/words.tsv -------------------------------------------------------------------------------- /site/demos/01_hello_world/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/01_hello_world/index.md -------------------------------------------------------------------------------- /site/demos/01_hello_world/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/01_hello_world/v1.md -------------------------------------------------------------------------------- /site/demos/01_hello_world/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/01_hello_world/v2.md -------------------------------------------------------------------------------- /site/demos/01_hello_world/v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/01_hello_world/v3.md -------------------------------------------------------------------------------- /site/demos/01_hello_world/v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/01_hello_world/v4.md -------------------------------------------------------------------------------- /site/demos/02_rolling_dice/averaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/02_rolling_dice/averaging.md -------------------------------------------------------------------------------- /site/demos/02_rolling_dice/grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/02_rolling_dice/grouping.md -------------------------------------------------------------------------------- /site/demos/02_rolling_dice/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/02_rolling_dice/index.md -------------------------------------------------------------------------------- /site/demos/03_countries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/03_countries.md -------------------------------------------------------------------------------- /site/demos/04_todo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/04_todo/index.md -------------------------------------------------------------------------------- /site/demos/04_todo/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/04_todo/v1.md -------------------------------------------------------------------------------- /site/demos/04_todo/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/04_todo/v2.md -------------------------------------------------------------------------------- /site/demos/04_todo/v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/04_todo/v3.md -------------------------------------------------------------------------------- /site/demos/04_todo/v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/04_todo/v4.md -------------------------------------------------------------------------------- /site/demos/04_todo/v5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/04_todo/v5.md -------------------------------------------------------------------------------- /site/demos/04_todo/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/04_todo/v6.md -------------------------------------------------------------------------------- /site/demos/05_drawing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/05_drawing.md -------------------------------------------------------------------------------- /site/demos/06_city_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/06_city_database.md -------------------------------------------------------------------------------- /site/demos/07_car_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/07_car_analysis.md -------------------------------------------------------------------------------- /site/demos/08_movie_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/08_movie_database.md -------------------------------------------------------------------------------- /site/demos/09_word_frequencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/09_word_frequencies.md -------------------------------------------------------------------------------- /site/demos/10_ui_components/10_Inspector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/10_ui_components/10_Inspector.md -------------------------------------------------------------------------------- /site/demos/10_ui_components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/10_ui_components/index.md -------------------------------------------------------------------------------- /site/demos/_tinydraw.md: -------------------------------------------------------------------------------- 1 | # TinyDraw 2 | 3 | -> /demos/drawing 4 | -------------------------------------------------------------------------------- /site/demos/_tinymovies.md: -------------------------------------------------------------------------------- 1 | # TinyMovies 2 | 3 | -> /demos/movie-database 4 | -------------------------------------------------------------------------------- /site/demos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/demos/index.md -------------------------------------------------------------------------------- /site/extras/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/extras/CNAME: -------------------------------------------------------------------------------- 1 | tinybase.org -------------------------------------------------------------------------------- /site/extras/arch0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arch0.svg -------------------------------------------------------------------------------- /site/extras/arch1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arch1.svg -------------------------------------------------------------------------------- /site/extras/arch2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arch2.svg -------------------------------------------------------------------------------- /site/extras/arch3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arch3.svg -------------------------------------------------------------------------------- /site/extras/arch4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arch4.svg -------------------------------------------------------------------------------- /site/extras/arch5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arch5.svg -------------------------------------------------------------------------------- /site/extras/arch6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arch6.svg -------------------------------------------------------------------------------- /site/extras/arktype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/arktype.svg -------------------------------------------------------------------------------- /site/extras/automerge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/automerge.svg -------------------------------------------------------------------------------- /site/extras/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/browser.svg -------------------------------------------------------------------------------- /site/extras/bun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/bun.svg -------------------------------------------------------------------------------- /site/extras/car-analysis.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/car-analysis.webp -------------------------------------------------------------------------------- /site/extras/cloudflare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/cloudflare.svg -------------------------------------------------------------------------------- /site/extras/common.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/common.svg -------------------------------------------------------------------------------- /site/extras/crsqlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/crsqlite.png -------------------------------------------------------------------------------- /site/extras/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/database.svg -------------------------------------------------------------------------------- /site/extras/durable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/durable.svg -------------------------------------------------------------------------------- /site/extras/effect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/effect.svg -------------------------------------------------------------------------------- /site/extras/electric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/electric.svg -------------------------------------------------------------------------------- /site/extras/expo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/expo.svg -------------------------------------------------------------------------------- /site/extras/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/favicon.png -------------------------------------------------------------------------------- /site/extras/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/favicon.svg -------------------------------------------------------------------------------- /site/extras/favicon_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/favicon_pad.png -------------------------------------------------------------------------------- /site/extras/indexeddb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/indexeddb.svg -------------------------------------------------------------------------------- /site/extras/inspector.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/inspector.webp -------------------------------------------------------------------------------- /site/extras/local-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/local-first.svg -------------------------------------------------------------------------------- /site/extras/logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/logotype.svg -------------------------------------------------------------------------------- /site/extras/movie-database.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/movie-database.webp -------------------------------------------------------------------------------- /site/extras/partykit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/partykit.gif -------------------------------------------------------------------------------- /site/extras/partykit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/partykit.svg -------------------------------------------------------------------------------- /site/extras/pglite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/pglite.svg -------------------------------------------------------------------------------- /site/extras/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/postgresql.svg -------------------------------------------------------------------------------- /site/extras/powersync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/powersync.svg -------------------------------------------------------------------------------- /site/extras/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/react.svg -------------------------------------------------------------------------------- /site/extras/reactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/reactive.svg -------------------------------------------------------------------------------- /site/extras/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/sqlite.svg -------------------------------------------------------------------------------- /site/extras/store-inspector.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/store-inspector.webp -------------------------------------------------------------------------------- /site/extras/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/sync.svg -------------------------------------------------------------------------------- /site/extras/tinyrooms.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/tinyrooms.webp -------------------------------------------------------------------------------- /site/extras/turso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/turso.svg -------------------------------------------------------------------------------- /site/extras/typebox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/typebox.svg -------------------------------------------------------------------------------- /site/extras/ui-react-dom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/ui-react-dom.webp -------------------------------------------------------------------------------- /site/extras/valibot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/valibot.svg -------------------------------------------------------------------------------- /site/extras/vite-tinybase-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/vite-tinybase-2.png -------------------------------------------------------------------------------- /site/extras/vite-tinybase-sync.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/vite-tinybase-sync.mov -------------------------------------------------------------------------------- /site/extras/vite-tinybase-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/vite-tinybase-sync.png -------------------------------------------------------------------------------- /site/extras/vite-tinybase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/vite-tinybase.png -------------------------------------------------------------------------------- /site/extras/yjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/yjs.svg -------------------------------------------------------------------------------- /site/extras/youtube.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/youtube.webp -------------------------------------------------------------------------------- /site/extras/yup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/yup.svg -------------------------------------------------------------------------------- /site/extras/zod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/extras/zod.svg -------------------------------------------------------------------------------- /site/fonts/inconsolata.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/fonts/inconsolata.woff2 -------------------------------------------------------------------------------- /site/fonts/inter.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/fonts/inter.woff2 -------------------------------------------------------------------------------- /site/fonts/shantell.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/fonts/shantell.woff2 -------------------------------------------------------------------------------- /site/guides/01_the_basics/6_transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/01_the_basics/6_transactions.md -------------------------------------------------------------------------------- /site/guides/01_the_basics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/01_the_basics/index.md -------------------------------------------------------------------------------- /site/guides/02_building_uis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/02_building_uis/index.md -------------------------------------------------------------------------------- /site/guides/03_schemas/1_using_schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/03_schemas/1_using_schemas.md -------------------------------------------------------------------------------- /site/guides/03_schemas/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/03_schemas/index.md -------------------------------------------------------------------------------- /site/guides/04_persistence/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/04_persistence/index.md -------------------------------------------------------------------------------- /site/guides/05_synchronization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/05_synchronization/index.md -------------------------------------------------------------------------------- /site/guides/06_integrations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/06_integrations/index.md -------------------------------------------------------------------------------- /site/guides/07_using_metrics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/07_using_metrics/index.md -------------------------------------------------------------------------------- /site/guides/08_using_indexes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/08_using_indexes/index.md -------------------------------------------------------------------------------- /site/guides/09_using_relationships/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/09_using_relationships/index.md -------------------------------------------------------------------------------- /site/guides/10_using_checkpoints/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/10_using_checkpoints/index.md -------------------------------------------------------------------------------- /site/guides/11_using_queries/2_tinyql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/11_using_queries/2_tinyql.md -------------------------------------------------------------------------------- /site/guides/11_using_queries/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/11_using_queries/index.md -------------------------------------------------------------------------------- /site/guides/12_inspecting_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/12_inspecting_data.md -------------------------------------------------------------------------------- /site/guides/13_how_tinybase_is_built/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/13_how_tinybase_is_built/index.md -------------------------------------------------------------------------------- /site/guides/14_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/14_faq.md -------------------------------------------------------------------------------- /site/guides/15_agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/15_agents.md -------------------------------------------------------------------------------- /site/guides/16_releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/16_releases.md -------------------------------------------------------------------------------- /site/guides/_making_queries/2_tinyql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/_making_queries/2_tinyql.md -------------------------------------------------------------------------------- /site/guides/_making_queries/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/_making_queries/index.md -------------------------------------------------------------------------------- /site/guides/_metrics_and_indexes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/_metrics_and_indexes/index.md -------------------------------------------------------------------------------- /site/guides/_schemas_and_persistence/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/_schemas_and_persistence/index.md -------------------------------------------------------------------------------- /site/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/guides/index.md -------------------------------------------------------------------------------- /site/home/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/home/.prettierrc -------------------------------------------------------------------------------- /site/home/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/home/index.md -------------------------------------------------------------------------------- /site/js/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/js/app.ts -------------------------------------------------------------------------------- /site/js/common/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/js/common/common.ts -------------------------------------------------------------------------------- /site/js/common/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/js/common/dark.ts -------------------------------------------------------------------------------- /site/js/common/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/js/common/search.ts -------------------------------------------------------------------------------- /site/js/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/js/home.ts -------------------------------------------------------------------------------- /site/js/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/js/single.ts -------------------------------------------------------------------------------- /site/js/version.ts: -------------------------------------------------------------------------------- 1 | export const thisVersion = 'v7.2.0'; -------------------------------------------------------------------------------- /site/less/article.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/article.less -------------------------------------------------------------------------------- /site/less/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/header.less -------------------------------------------------------------------------------- /site/less/home.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/home.less -------------------------------------------------------------------------------- /site/less/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/index.less -------------------------------------------------------------------------------- /site/less/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/layout.less -------------------------------------------------------------------------------- /site/less/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/nav.less -------------------------------------------------------------------------------- /site/less/pre.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/pre.less -------------------------------------------------------------------------------- /site/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/theme.less -------------------------------------------------------------------------------- /site/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/less/type.less -------------------------------------------------------------------------------- /site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/tsconfig.json -------------------------------------------------------------------------------- /site/ui/ArticleInner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/ArticleInner.tsx -------------------------------------------------------------------------------- /site/ui/BuildContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/BuildContext.tsx -------------------------------------------------------------------------------- /site/ui/ExecutablePen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/ExecutablePen.tsx -------------------------------------------------------------------------------- /site/ui/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/Footer.tsx -------------------------------------------------------------------------------- /site/ui/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/Header.tsx -------------------------------------------------------------------------------- /site/ui/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/Home.tsx -------------------------------------------------------------------------------- /site/ui/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/Main.tsx -------------------------------------------------------------------------------- /site/ui/MarkdownPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/MarkdownPage.tsx -------------------------------------------------------------------------------- /site/ui/NavJson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/NavJson.tsx -------------------------------------------------------------------------------- /site/ui/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/Page.tsx -------------------------------------------------------------------------------- /site/ui/Readme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/Readme.tsx -------------------------------------------------------------------------------- /site/ui/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/site/ui/common.ts -------------------------------------------------------------------------------- /src/@types/_internal/queries/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/@types/_internal/store/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/_internal/store/index.d.ts -------------------------------------------------------------------------------- /src/@types/_internal/ui-react/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/@types/checkpoints/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/checkpoints/docs.js -------------------------------------------------------------------------------- /src/@types/checkpoints/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/checkpoints/index.d.ts -------------------------------------------------------------------------------- /src/@types/common/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/common/docs.js -------------------------------------------------------------------------------- /src/@types/common/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/common/index.d.ts -------------------------------------------------------------------------------- /src/@types/common/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/common/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/docs.js -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/index.d.ts -------------------------------------------------------------------------------- /src/@types/indexes/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/indexes/docs.js -------------------------------------------------------------------------------- /src/@types/indexes/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/indexes/index.d.ts -------------------------------------------------------------------------------- /src/@types/indexes/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/indexes/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/mergeable-store/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/mergeable-store/docs.js -------------------------------------------------------------------------------- /src/@types/mergeable-store/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/mergeable-store/index.d.ts -------------------------------------------------------------------------------- /src/@types/metrics/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/metrics/docs.js -------------------------------------------------------------------------------- /src/@types/metrics/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/metrics/index.d.ts -------------------------------------------------------------------------------- /src/@types/metrics/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/metrics/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/omni/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/omni/docs.js -------------------------------------------------------------------------------- /src/@types/omni/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/omni/index.d.ts -------------------------------------------------------------------------------- /src/@types/omni/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/omni/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/persisters/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/persisters/docs.js -------------------------------------------------------------------------------- /src/@types/persisters/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/persisters/index.d.ts -------------------------------------------------------------------------------- /src/@types/persisters/persister-file/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/persisters/persister-file/docs.js -------------------------------------------------------------------------------- /src/@types/persisters/persister-yjs/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/persisters/persister-yjs/docs.js -------------------------------------------------------------------------------- /src/@types/persisters/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/persisters/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/queries/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/queries/docs.js -------------------------------------------------------------------------------- /src/@types/queries/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/queries/index.d.ts -------------------------------------------------------------------------------- /src/@types/queries/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/queries/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/relationships/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/relationships/docs.js -------------------------------------------------------------------------------- /src/@types/relationships/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/relationships/index.d.ts -------------------------------------------------------------------------------- /src/@types/schematizers/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/schematizers/docs.js -------------------------------------------------------------------------------- /src/@types/schematizers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/schematizers/index.d.ts -------------------------------------------------------------------------------- /src/@types/store/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/store/docs.js -------------------------------------------------------------------------------- /src/@types/store/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/store/index.d.ts -------------------------------------------------------------------------------- /src/@types/store/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/store/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/synchronizers/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/synchronizers/docs.js -------------------------------------------------------------------------------- /src/@types/synchronizers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/synchronizers/index.d.ts -------------------------------------------------------------------------------- /src/@types/ui-react-dom/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/ui-react-dom/docs.js -------------------------------------------------------------------------------- /src/@types/ui-react-dom/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/ui-react-dom/index.d.ts -------------------------------------------------------------------------------- /src/@types/ui-react-inspector/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/ui-react-inspector/docs.js -------------------------------------------------------------------------------- /src/@types/ui-react-inspector/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/ui-react-inspector/index.d.ts -------------------------------------------------------------------------------- /src/@types/ui-react/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/ui-react/docs.js -------------------------------------------------------------------------------- /src/@types/ui-react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/ui-react/index.d.ts -------------------------------------------------------------------------------- /src/@types/ui-react/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/ui-react/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/@types/with-schemas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/@types/with-schemas/index.d.ts -------------------------------------------------------------------------------- /src/checkpoints/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/checkpoints/index.ts -------------------------------------------------------------------------------- /src/common/aggregators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/aggregators.ts -------------------------------------------------------------------------------- /src/common/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/array.ts -------------------------------------------------------------------------------- /src/common/cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/cell.ts -------------------------------------------------------------------------------- /src/common/codec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/codec.ts -------------------------------------------------------------------------------- /src/common/coll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/coll.ts -------------------------------------------------------------------------------- /src/common/definable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/definable.ts -------------------------------------------------------------------------------- /src/common/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/hash.ts -------------------------------------------------------------------------------- /src/common/hlc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/hlc.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/json.ts -------------------------------------------------------------------------------- /src/common/listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/listeners.ts -------------------------------------------------------------------------------- /src/common/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/map.ts -------------------------------------------------------------------------------- /src/common/obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/obj.ts -------------------------------------------------------------------------------- /src/common/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/other.ts -------------------------------------------------------------------------------- /src/common/pairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/pairs.ts -------------------------------------------------------------------------------- /src/common/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/pool.ts -------------------------------------------------------------------------------- /src/common/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/react.ts -------------------------------------------------------------------------------- /src/common/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/set.ts -------------------------------------------------------------------------------- /src/common/stamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/stamps.ts -------------------------------------------------------------------------------- /src/common/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/common/strings.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/indexes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/indexes/index.ts -------------------------------------------------------------------------------- /src/mergeable-store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/mergeable-store/index.ts -------------------------------------------------------------------------------- /src/metrics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/metrics/index.ts -------------------------------------------------------------------------------- /src/omni/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/omni/index.ts -------------------------------------------------------------------------------- /src/persisters/common/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/create.ts -------------------------------------------------------------------------------- /src/persisters/common/database/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/database/commands.ts -------------------------------------------------------------------------------- /src/persisters/common/database/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/database/common.ts -------------------------------------------------------------------------------- /src/persisters/common/database/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/database/config.ts -------------------------------------------------------------------------------- /src/persisters/common/database/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/database/json.ts -------------------------------------------------------------------------------- /src/persisters/common/database/postgresql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/database/postgresql.ts -------------------------------------------------------------------------------- /src/persisters/common/database/sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/database/sqlite.ts -------------------------------------------------------------------------------- /src/persisters/common/database/tabular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/database/tabular.ts -------------------------------------------------------------------------------- /src/persisters/common/partykit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/common/partykit.ts -------------------------------------------------------------------------------- /src/persisters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-automerge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-automerge/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-browser/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-expo-sqlite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-expo-sqlite/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-file/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-indexed-db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-indexed-db/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-libsql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-libsql/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-pglite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-pglite/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-postgres/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-postgres/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-remote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-remote/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-sqlite3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-sqlite3/index.ts -------------------------------------------------------------------------------- /src/persisters/persister-yjs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/persisters/persister-yjs/index.ts -------------------------------------------------------------------------------- /src/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/queries/index.ts -------------------------------------------------------------------------------- /src/relationships/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/relationships/index.ts -------------------------------------------------------------------------------- /src/schematizers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/schematizers/index.ts -------------------------------------------------------------------------------- /src/schematizers/schematizer-yup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/schematizers/schematizer-yup/index.ts -------------------------------------------------------------------------------- /src/schematizers/schematizer-zod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/schematizers/schematizer-zod/index.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/synchronizers/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/synchronizers/common.ts -------------------------------------------------------------------------------- /src/synchronizers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/synchronizers/index.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/ui-react-dom/EditableCellView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/EditableCellView.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/EditableValueView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/EditableValueView.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/SliceInHtmlTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/SliceInHtmlTable.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/SortedTablePaginator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/SortedTablePaginator.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/TableInHtmlTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/TableInHtmlTable.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/ValuesInHtmlTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/ValuesInHtmlTable.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/common/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/common/components.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/common/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/common/hooks.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/common/index.tsx -------------------------------------------------------------------------------- /src/ui-react-dom/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-dom/index.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/Body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/Body.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/Details.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/Header.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/IndexesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/IndexesView.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/MetricsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/MetricsView.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/Nub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/Nub.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/Panel.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/QueriesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/QueriesView.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/StoreView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/StoreView.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/TablesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/TablesView.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/ValuesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/ValuesView.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/actions/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/actions/common.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/actions/tables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/actions/tables.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/actions/values.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/actions/values.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/common.ts -------------------------------------------------------------------------------- /src/ui-react-inspector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/index.tsx -------------------------------------------------------------------------------- /src/ui-react-inspector/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/style.ts -------------------------------------------------------------------------------- /src/ui-react-inspector/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/svg.ts -------------------------------------------------------------------------------- /src/ui-react-inspector/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react-inspector/types.ts -------------------------------------------------------------------------------- /src/ui-react/BackwardCheckpointsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/BackwardCheckpointsView.tsx -------------------------------------------------------------------------------- /src/ui-react/CellView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/CellView.tsx -------------------------------------------------------------------------------- /src/ui-react/CheckpointView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/CheckpointView.tsx -------------------------------------------------------------------------------- /src/ui-react/CurrentCheckpointView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/CurrentCheckpointView.tsx -------------------------------------------------------------------------------- /src/ui-react/ForwardCheckpointsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/ForwardCheckpointsView.tsx -------------------------------------------------------------------------------- /src/ui-react/IndexView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/IndexView.tsx -------------------------------------------------------------------------------- /src/ui-react/LinkedRowsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/LinkedRowsView.tsx -------------------------------------------------------------------------------- /src/ui-react/LocalRowsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/LocalRowsView.tsx -------------------------------------------------------------------------------- /src/ui-react/MetricView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/MetricView.tsx -------------------------------------------------------------------------------- /src/ui-react/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/Provider.tsx -------------------------------------------------------------------------------- /src/ui-react/RemoteRowView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/RemoteRowView.tsx -------------------------------------------------------------------------------- /src/ui-react/ResultCellView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/ResultCellView.tsx -------------------------------------------------------------------------------- /src/ui-react/ResultRowView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/ResultRowView.tsx -------------------------------------------------------------------------------- /src/ui-react/ResultSortedTableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/ResultSortedTableView.tsx -------------------------------------------------------------------------------- /src/ui-react/ResultTableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/ResultTableView.tsx -------------------------------------------------------------------------------- /src/ui-react/RowView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/RowView.tsx -------------------------------------------------------------------------------- /src/ui-react/SliceView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/SliceView.tsx -------------------------------------------------------------------------------- /src/ui-react/SortedTableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/SortedTableView.tsx -------------------------------------------------------------------------------- /src/ui-react/TableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/TableView.tsx -------------------------------------------------------------------------------- /src/ui-react/TablesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/TablesView.tsx -------------------------------------------------------------------------------- /src/ui-react/ValueView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/ValueView.tsx -------------------------------------------------------------------------------- /src/ui-react/ValuesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/ValuesView.tsx -------------------------------------------------------------------------------- /src/ui-react/common/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/common/hooks.tsx -------------------------------------------------------------------------------- /src/ui-react/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/common/index.tsx -------------------------------------------------------------------------------- /src/ui-react/common/wrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/common/wrap.tsx -------------------------------------------------------------------------------- /src/ui-react/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/context.ts -------------------------------------------------------------------------------- /src/ui-react/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/hooks.ts -------------------------------------------------------------------------------- /src/ui-react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/src/ui-react/index.ts -------------------------------------------------------------------------------- /support/tinybase-demo-server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/support/tinybase-demo-server/.dockerignore -------------------------------------------------------------------------------- /support/tinybase-demo-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/support/tinybase-demo-server/Dockerfile -------------------------------------------------------------------------------- /support/tinybase-demo-server/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/support/tinybase-demo-server/bun.lockb -------------------------------------------------------------------------------- /support/tinybase-demo-server/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/support/tinybase-demo-server/fly.toml -------------------------------------------------------------------------------- /support/tinybase-demo-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/support/tinybase-demo-server/index.ts -------------------------------------------------------------------------------- /support/tinybase-demo-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/support/tinybase-demo-server/package.json -------------------------------------------------------------------------------- /test/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/common.ts -------------------------------------------------------------------------------- /test/e2e/demos/car-analysis.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/car-analysis.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/city-database.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/city-database.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/countries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/countries.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/drawing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/drawing.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/hello-world.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/hello-world.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/movie-database.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/movie-database.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/rolling-dice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/rolling-dice.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/todo-app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/todo-app.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/ui-components.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/ui-components.test.ts -------------------------------------------------------------------------------- /test/e2e/demos/word-frequencies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/demos/word-frequencies.test.ts -------------------------------------------------------------------------------- /test/e2e/home.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/e2e/home.test.ts -------------------------------------------------------------------------------- /test/perf/benchmark.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/benchmark.test.ts -------------------------------------------------------------------------------- /test/perf/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/common.ts -------------------------------------------------------------------------------- /test/perf/indexes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/indexes.test.ts -------------------------------------------------------------------------------- /test/perf/mergeable-store-create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/mergeable-store-create.test.ts -------------------------------------------------------------------------------- /test/perf/mergeable-store-grow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/mergeable-store-grow.test.ts -------------------------------------------------------------------------------- /test/perf/metrics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/metrics.test.ts -------------------------------------------------------------------------------- /test/perf/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/queries.test.ts -------------------------------------------------------------------------------- /test/perf/relationships.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/relationships.test.ts -------------------------------------------------------------------------------- /test/perf/store-create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/store-create.test.ts -------------------------------------------------------------------------------- /test/perf/store-grow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/perf/store-grow.test.ts -------------------------------------------------------------------------------- /test/prod/esm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/prod/esm.ts -------------------------------------------------------------------------------- /test/prod/imports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/prod/imports.test.ts -------------------------------------------------------------------------------- /test/scratch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/scratch.ts -------------------------------------------------------------------------------- /test/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/server.mjs -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/unit/common/automerge-adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/common/automerge-adaptor.ts -------------------------------------------------------------------------------- /test/unit/common/expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/common/expect.ts -------------------------------------------------------------------------------- /test/unit/common/listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/common/listeners.ts -------------------------------------------------------------------------------- /test/unit/common/mergeable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/common/mergeable.ts -------------------------------------------------------------------------------- /test/unit/common/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/common/other.ts -------------------------------------------------------------------------------- /test/unit/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/common/types.ts -------------------------------------------------------------------------------- /test/unit/core/other/checkpoints.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/other/checkpoints.test.ts -------------------------------------------------------------------------------- /test/unit/core/other/common.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/other/common.test.ts -------------------------------------------------------------------------------- /test/unit/core/other/indexes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/other/indexes.test.ts -------------------------------------------------------------------------------- /test/unit/core/other/metrics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/other/metrics.test.ts -------------------------------------------------------------------------------- /test/unit/core/other/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/other/queries.test.ts -------------------------------------------------------------------------------- /test/unit/core/other/relationships.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/other/relationships.test.ts -------------------------------------------------------------------------------- /test/unit/core/store/store-basics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/store/store-basics.test.ts -------------------------------------------------------------------------------- /test/unit/core/store/store-nulls.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/store/store-nulls.test.ts -------------------------------------------------------------------------------- /test/unit/core/store/store-schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/store/store-schema.test.ts -------------------------------------------------------------------------------- /test/unit/core/types/checkpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/checkpoints.ts -------------------------------------------------------------------------------- /test/unit/core/types/indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/indexes.ts -------------------------------------------------------------------------------- /test/unit/core/types/mergeable-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/mergeable-store.ts -------------------------------------------------------------------------------- /test/unit/core/types/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/metrics.ts -------------------------------------------------------------------------------- /test/unit/core/types/persisters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/persisters.ts -------------------------------------------------------------------------------- /test/unit/core/types/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/queries.ts -------------------------------------------------------------------------------- /test/unit/core/types/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/relationships.ts -------------------------------------------------------------------------------- /test/unit/core/types/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/store.ts -------------------------------------------------------------------------------- /test/unit/core/types/types.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/types.test.tsx -------------------------------------------------------------------------------- /test/unit/core/types/ui-react-dom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/ui-react-dom.tsx -------------------------------------------------------------------------------- /test/unit/core/types/ui-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/types/ui-react.tsx -------------------------------------------------------------------------------- /test/unit/core/ui-react/hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/core/ui-react/hooks.test.tsx -------------------------------------------------------------------------------- /test/unit/documentation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/documentation.test.ts -------------------------------------------------------------------------------- /test/unit/persisters/automerge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/automerge.test.ts -------------------------------------------------------------------------------- /test/unit/persisters/common/databases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/common/databases.ts -------------------------------------------------------------------------------- /test/unit/persisters/common/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/common/mocks.ts -------------------------------------------------------------------------------- /test/unit/persisters/common/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/common/other.ts -------------------------------------------------------------------------------- /test/unit/persisters/database/json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/database/json.test.ts -------------------------------------------------------------------------------- /test/unit/persisters/mergeable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/mergeable.test.ts -------------------------------------------------------------------------------- /test/unit/persisters/persisters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/persisters.test.ts -------------------------------------------------------------------------------- /test/unit/persisters/yjs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/unit/persisters/yjs.test.ts -------------------------------------------------------------------------------- /test/vitest/reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/vitest/reporter.ts -------------------------------------------------------------------------------- /test/vitest/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/test/vitest/setup.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyplex/tinybase/HEAD/vitest.config.ts --------------------------------------------------------------------------------