Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/api/md/-internal-/classes/MapeoProject.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,16 @@ and only this project will replicate.

***

### $getStats()

> **$getStats**(): [`ProjectStats`](../namespaces/home_runner_work_comapeo-core_comapeo-core_src_mapeo-project/interfaces/ProjectStats.md)

#### Returns

[`ProjectStats`](../namespaces/home_runner_work_comapeo-core_comapeo-core_src_mapeo-project/interfaces/ProjectStats.md)

***

### $hasSyncedProjectSettings()

> **$hasSyncedProjectSettings**(): `Promise`\<`boolean`\>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
### Interfaces

- [BlobRef](interfaces/BlobRef.md)
- [ProjectStats](interfaces/ProjectStats.md)
- [Stats](interfaces/Stats.md)

### Type Aliases

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[**API**](../../../../README.md) • **Docs**

***

[API](../../../../README.md) / [\<internal\>](../../../README.md) / ["/home/runner/work/comapeo-core/comapeo-core/src/mapeo-project"](../README.md) / ProjectStats

# Interface: ProjectStats

## Properties

### members

> **members**: [`Stats`](Stats.md)

***

### observations

> **observations**: [`Stats`](Stats.md)

***

### timezoneOffset

> **timezoneOffset**: `number`

***

### tracks

> **tracks**: [`Stats`](Stats.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[**API**](../../../../README.md) • **Docs**

***

[API](../../../../README.md) / [\<internal\>](../../../README.md) / ["/home/runner/work/comapeo-core/comapeo-core/src/mapeo-project"](../README.md) / Stats

# Interface: Stats

## Properties

### columns

> **columns**: `string`[]

***

### values

> **values**: [`string`, `number`][]
4 changes: 4 additions & 0 deletions docs/api/md/classes/MapeoManager.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ Folder for sqlite Dbs. Folder must exist. Use ':memory:' to store everything in-

• **opts.defaultConfigPath**: `undefined` \| `string`

• **opts.defaultIsArchiveDevice**: `undefined` \| `boolean` = `DEFAULT_IS_ARCHIVE_DEVICE`

Whether the node is an archive device by default

• **opts.defaultOnlineStyleUrl**: `undefined` \| `string` = `DEFAULT_ONLINE_STYLE_URL`

URL for an online-hosted StyleJSON asset.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@comapeo/core",
"version": "4.1.4",
"version": "4.2.0",
"description": "Offline p2p mapping library",
"main": "src/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading