diff --git a/.gitignore b/.gitignore index 37151459e..57ce2d83b 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ cache node_modules tags docs/api/index.md +docs/.vitepress/dist/ diff --git a/docs/api/access/classes/Access.md b/docs/api/access/classes/Access.md index 11de5a371..cc58707ad 100644 --- a/docs/api/access/classes/Access.md +++ b/docs/api/access/classes/Access.md @@ -40,4 +40,4 @@ remoteStorage.access.claim('*', 'rw'); #### Defined in -[access.ts:73](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/access.ts#L73) +[access.ts:73](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/access.ts#L73) diff --git a/docs/api/baseclient/classes/BaseClient.md b/docs/api/baseclient/classes/BaseClient.md index 58c64e24f..48cbb3949 100644 --- a/docs/api/baseclient/classes/BaseClient.md +++ b/docs/api/baseclient/classes/BaseClient.md @@ -223,7 +223,7 @@ corresponding `publicClient` it is `/public//`. #### Defined in -[baseclient.ts:239](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L239) +[baseclient.ts:239](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L239) ## Methods @@ -247,7 +247,7 @@ Usually called via [`on()`](#on) #### Defined in -[eventhandling.ts:29](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L29) +[eventhandling.ts:29](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L29) *** @@ -286,7 +286,7 @@ client.cache('lists/', 'SEEN'); #### Defined in -[baseclient.ts:683](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L683) +[baseclient.ts:683](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L683) *** @@ -344,21 +344,21 @@ client.declareType('todo-item', { #### Defined in -[baseclient.ts:733](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L733) +[baseclient.ts:733](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L733) *** ### getAll() -> **getAll**(`path`, `maxAge`?): `Promise`\<`unknown`\> +> **getAll**(`path`?, `maxAge`?): `Promise`\<`unknown`\> Get all objects directly below a given path. #### Parameters -• **path**: `string` +• **path?**: `string` -Path to the folder. Must end in a forward slash. +(optional) Path to the folder. Must end in a forward slash. • **maxAge?**: `number` \| `false` @@ -420,7 +420,7 @@ Example response: #### Defined in -[baseclient.ts:395](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L395) +[baseclient.ts:395](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L395) *** @@ -468,7 +468,7 @@ client.getFile('path/to/some/image').then(file => { #### Defined in -[baseclient.ts:456](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L456) +[baseclient.ts:456](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L456) *** @@ -499,7 +499,7 @@ The full URL of the item, including the storage origin, or `undefined` #### Defined in -[baseclient.ts:655](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L655) +[baseclient.ts:655](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L655) *** @@ -569,7 +569,7 @@ Example of a listing object: #### Defined in -[baseclient.ts:326](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L326) +[baseclient.ts:326](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L326) *** @@ -605,7 +605,7 @@ client.getObject('/path/to/object').then(obj => console.log(obj)); #### Defined in -[baseclient.ts:540](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L540) +[baseclient.ts:540](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L540) *** @@ -641,7 +641,7 @@ remoteStorage.on('connected', function() { #### Defined in -[eventhandling.ts:55](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L55) +[eventhandling.ts:55](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L55) *** @@ -669,7 +669,7 @@ client.remove('path/to/object').then(() => console.log('item deleted')); #### Defined in -[baseclient.ts:629](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L629) +[baseclient.ts:629](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L629) *** @@ -691,7 +691,7 @@ Remove a previously installed event handler #### Defined in -[eventhandling.ts:62](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L62) +[eventhandling.ts:62](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L62) *** @@ -716,7 +716,7 @@ A new `BaseClient` operating on a subpath of the current base path #### Defined in -[baseclient.ts:272](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L272) +[baseclient.ts:272](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L272) *** @@ -772,7 +772,7 @@ fileReader.readAsArrayBuffer(file); #### Defined in -[baseclient.ts:502](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L502) +[baseclient.ts:502](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L502) *** @@ -825,7 +825,7 @@ client.storeObject('bookmark', path, bookmark) #### Defined in -[baseclient.ts:588](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L588) +[baseclient.ts:588](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L588) *** @@ -862,4 +862,4 @@ var result = client.validate(document); #### Defined in -[baseclient.ts:765](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/baseclient.ts#L765) +[baseclient.ts:765](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/baseclient.ts#L765) diff --git a/docs/api/caching/classes/Caching.md b/docs/api/caching/classes/Caching.md index 5afbabda2..04fb37dc4 100644 --- a/docs/api/caching/classes/Caching.md +++ b/docs/api/caching/classes/Caching.md @@ -68,7 +68,7 @@ remoteStorage.caching.checkPath('documents/').then(strategy => { #### Defined in -[caching.ts:157](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/caching.ts#L157) +[caching.ts:157](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/caching.ts#L157) *** @@ -99,7 +99,7 @@ remoteStorage.caching.disable('/bookmarks/'); #### Defined in -[caching.ts:124](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/caching.ts#L124) +[caching.ts:124](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/caching.ts#L124) *** @@ -129,7 +129,7 @@ remoteStorage.caching.enable('/bookmarks/'); #### Defined in -[caching.ts:107](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/caching.ts#L107) +[caching.ts:107](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/caching.ts#L107) *** @@ -151,7 +151,7 @@ Callback function #### Defined in -[caching.ts:133](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/caching.ts#L133) +[caching.ts:133](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/caching.ts#L133) *** @@ -173,7 +173,7 @@ remoteStorage.caching.reset(); #### Defined in -[caching.ts:175](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/caching.ts#L175) +[caching.ts:175](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/caching.ts#L175) *** @@ -207,4 +207,4 @@ remoteStorage.caching.set('/bookmarks/archive/', 'SEEN'); #### Defined in -[caching.ts:67](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/caching.ts#L67) +[caching.ts:67](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/caching.ts#L67) diff --git a/docs/api/eventhandling/type-aliases/EventHandler.md b/docs/api/eventhandling/type-aliases/EventHandler.md index 6ffd9f32c..66aa9dee3 100644 --- a/docs/api/eventhandling/type-aliases/EventHandler.md +++ b/docs/api/eventhandling/type-aliases/EventHandler.md @@ -12,4 +12,4 @@ ## Defined in -[eventhandling.ts:5](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L5) +[eventhandling.ts:5](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L5) diff --git a/docs/api/remote/classes/RemoteBase.md b/docs/api/remote/classes/RemoteBase.md index 5a1f3c8ac..f94bc2193 100644 --- a/docs/api/remote/classes/RemoteBase.md +++ b/docs/api/remote/classes/RemoteBase.md @@ -32,7 +32,7 @@ Usually called via [`on()`](#on) #### Defined in -[eventhandling.ts:29](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L29) +[eventhandling.ts:29](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L29) *** @@ -72,7 +72,7 @@ remoteStorage.on('connected', function() { #### Defined in -[eventhandling.ts:55](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L55) +[eventhandling.ts:55](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L55) *** @@ -98,4 +98,4 @@ Remove a previously installed event handler #### Defined in -[eventhandling.ts:62](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L62) +[eventhandling.ts:62](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L62) diff --git a/docs/api/remote/interfaces/Remote.md b/docs/api/remote/interfaces/Remote.md index 40f09de41..96e4f3a8f 100644 --- a/docs/api/remote/interfaces/Remote.md +++ b/docs/api/remote/interfaces/Remote.md @@ -12,7 +12,7 @@ Whether or not a remote store is connected #### Defined in -[remote.ts:82](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remote.ts#L82) +[remote.ts:82](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remote.ts#L82) *** @@ -24,7 +24,7 @@ Whether last sync action was successful or not #### Defined in -[remote.ts:87](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remote.ts#L87) +[remote.ts:87](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remote.ts#L87) *** @@ -36,7 +36,7 @@ The JSON-parsed properties object from the user's WebFinger record #### Defined in -[remote.ts:123](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remote.ts#L123) +[remote.ts:123](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remote.ts#L123) *** @@ -48,4 +48,4 @@ The user address of the connected user #### Defined in -[remote.ts:92](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remote.ts#L92) +[remote.ts:92](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remote.ts#L92) diff --git a/docs/api/remotestorage/classes/RemoteStorage.md b/docs/api/remotestorage/classes/RemoteStorage.md index b0f2962a1..0f1a3c245 100644 --- a/docs/api/remotestorage/classes/RemoteStorage.md +++ b/docs/api/remotestorage/classes/RemoteStorage.md @@ -176,7 +176,7 @@ Emitted when the sync interval changes #### Defined in -[remotestorage.ts:295](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L295) +[remotestorage.ts:295](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L295) *** @@ -186,7 +186,7 @@ Emitted when the sync interval changes #### Defined in -[remotestorage.ts:326](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L326) +[remotestorage.ts:326](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L326) *** @@ -196,7 +196,7 @@ Emitted when the sync interval changes #### Defined in -[remotestorage.ts:301](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L301) +[remotestorage.ts:301](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L301) *** @@ -218,7 +218,7 @@ remoteStorage.remote.connected #### Defined in -[remotestorage.ts:338](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L338) +[remotestorage.ts:338](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L338) *** @@ -228,7 +228,7 @@ remoteStorage.remote.connected #### Defined in -[remotestorage.ts:298](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L298) +[remotestorage.ts:298](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L298) ## Accessors @@ -244,7 +244,7 @@ Indicating if remoteStorage is currently connected. #### Defined in -[remotestorage.ts:441](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L441) +[remotestorage.ts:441](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L441) ## Methods @@ -268,7 +268,7 @@ Usually called via [`on()`](#on) #### Defined in -[eventhandling.ts:29](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L29) +[eventhandling.ts:29](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L29) *** @@ -318,7 +318,7 @@ remoteStorage.bookmarks.archive.getAll(false) #### Defined in -[remotestorage.ts:1189](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1189) +[remotestorage.ts:1189](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1189) *** @@ -370,7 +370,7 @@ remoteStorage.connect('user@example.com'); #### Defined in -[remotestorage.ts:543](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L543) +[remotestorage.ts:543](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L543) *** @@ -386,7 +386,7 @@ Disable remoteStorage debug logging #### Defined in -[remotestorage.ts:727](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L727) +[remotestorage.ts:727](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L727) *** @@ -405,7 +405,7 @@ cache. #### Defined in -[remotestorage.ts:629](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L629) +[remotestorage.ts:629](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L629) *** @@ -427,7 +427,7 @@ const remoteStorage = new RemoteStorage({ logging: true }); #### Defined in -[remotestorage.ts:720](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L720) +[remotestorage.ts:720](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L720) *** @@ -452,7 +452,7 @@ remoteStorage.getBackgroundSyncInterval(); #### Defined in -[remotestorage.ts:1024](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1024) +[remotestorage.ts:1024](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1024) *** @@ -478,7 +478,7 @@ remoteStorage.getCurrentSyncInterval(); #### Defined in -[remotestorage.ts:1060](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1060) +[remotestorage.ts:1060](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1060) *** @@ -503,7 +503,7 @@ remoteStorage.getRequestTimeout(); #### Defined in -[remotestorage.ts:1073](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1073) +[remotestorage.ts:1073](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1073) *** @@ -528,7 +528,7 @@ remoteStorage.getSyncInterval(); #### Defined in -[remotestorage.ts:990](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L990) +[remotestorage.ts:990](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L990) *** @@ -564,7 +564,7 @@ remoteStorage.on('connected', function() { #### Defined in -[eventhandling.ts:55](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L55) +[eventhandling.ts:55](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L55) *** @@ -605,7 +605,7 @@ remoteStorage.onChange('/bookmarks/', function() { #### Defined in -[remotestorage.ts:704](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L704) +[remotestorage.ts:704](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L704) *** @@ -624,7 +624,7 @@ Useful when not using the connect widget and encountering an #### Defined in -[remotestorage.ts:613](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L613) +[remotestorage.ts:613](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L613) *** @@ -646,7 +646,7 @@ Remove a previously installed event handler #### Defined in -[eventhandling.ts:62](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/eventhandling.ts#L62) +[eventhandling.ts:62](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/eventhandling.ts#L62) *** @@ -658,7 +658,7 @@ This method allows you to quickly instantiate a BaseClient, which you can use to directly read and manipulate data in the connected storage account. Please use this method only for debugging and development, and choose or -create a [data module](../../../data-modules) for your app to use. +create a [data module](../../../data-modules/) for your app to use. #### Parameters @@ -682,7 +682,7 @@ remoteStorage.scope('/public/pictures/').getListing(''); #### Defined in -[remotestorage.ts:971](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L971) +[remotestorage.ts:971](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L971) *** @@ -717,7 +717,7 @@ remoteStorage.setApiKeys({ #### Defined in -[remotestorage.ts:751](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L751) +[remotestorage.ts:751](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L751) *** @@ -746,7 +746,7 @@ remoteStorage.setBackgroundSyncInterval(90000); #### Defined in -[remotestorage.ts:1037](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1037) +[remotestorage.ts:1037](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1037) *** @@ -776,7 +776,7 @@ remoteStorage.setCordovaRedirectUri('https://app.example.com'); #### Defined in -[remotestorage.ts:797](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L797) +[remotestorage.ts:797](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L797) *** @@ -804,7 +804,7 @@ remoteStorage.setRequestTimeout(30000); #### Defined in -[remotestorage.ts:1085](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1085) +[remotestorage.ts:1085](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1085) *** @@ -832,7 +832,7 @@ remoteStorage.setSyncInterval(20000); #### Defined in -[remotestorage.ts:1002](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1002) +[remotestorage.ts:1002](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1002) *** @@ -857,7 +857,7 @@ A Promise which resolves when the sync has finished #### Defined in -[remotestorage.ts:1126](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1126) +[remotestorage.ts:1126](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1126) *** @@ -873,4 +873,4 @@ Stop the periodic synchronization. #### Defined in -[remotestorage.ts:1139](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L1139) +[remotestorage.ts:1139](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L1139) diff --git a/docs/api/remotestorage/interfaces/RSModule.md b/docs/api/remotestorage/interfaces/RSModule.md index 88b1c4bc3..92a7dd8c8 100644 --- a/docs/api/remotestorage/interfaces/RSModule.md +++ b/docs/api/remotestorage/interfaces/RSModule.md @@ -51,7 +51,7 @@ A module builder function, which defines the actual module #### Defined in -[remotestorage.ts:91](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L91) +[remotestorage.ts:91](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L91) *** @@ -63,4 +63,4 @@ The module's name, which is also the category (i.e. base folder) for document UR #### Defined in -[remotestorage.ts:87](https://github.com/remotestorage/remotestorage.js/blob/6f00c54cc7f590233dcd3504f048d1df775bc754/src/remotestorage.ts#L87) +[remotestorage.ts:87](https://github.com/remotestorage/remotestorage.js/blob/a199c15fb409a17fd444aa7fba846e7fecc5981d/src/remotestorage.ts#L87)