Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/pouchdb-replication

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/pouchdb-replication - npm Package Compare versions

Comparing version 6.4.2 to 6.4.3

30

pouchdb-replication/index.d.ts

@@ -14,3 +14,3 @@ // Type definitions for pouchdb-replication 6.4

/** If true, starts subscribing to future changes in the source database and continue replicating them. */
live?: boolean;
live?: boolean | undefined;

@@ -22,3 +22,3 @@ /**

*/
retry?: boolean;
retry?: boolean | undefined;

@@ -30,6 +30,6 @@ /**

*/
filter?: string | ((doc: any, params: any) => any);
filter?: string | ((doc: any, params: any) => any) | undefined;
/** Only show changes for docs with these ids (array of strings). */
doc_ids?: string[];
doc_ids?: string[] | undefined;

@@ -41,3 +41,3 @@ /**

*/
query_params?: {[paramName: string]: any};
query_params?: {[paramName: string]: any} | undefined;

@@ -49,3 +49,3 @@ /**

*/
view?: string;
view?: string | undefined;

@@ -55,3 +55,3 @@ /**

*/
selector?: Find.Selector;
selector?: Find.Selector | undefined;

@@ -65,3 +65,3 @@ /** Replicate changes after the given sequence number. */

/** Request timeout (in milliseconds). */
timeout?: number | false;
timeout?: number | false | undefined;

@@ -75,3 +75,3 @@ /**

*/
batch_size?: number;
batch_size?: number | undefined;

@@ -83,3 +83,3 @@ /**

*/
batches_limit?: number;
batches_limit?: number | undefined;

@@ -101,3 +101,3 @@ /**

*/
checkpoint?: boolean | 'target' | 'source';
checkpoint?: boolean | 'target' | 'source' | undefined;
}

@@ -136,4 +136,4 @@

interface SyncOptions extends ReplicateOptions {
push?: ReplicateOptions;
pull?: ReplicateOptions;
push?: ReplicateOptions | undefined;
pull?: ReplicateOptions | undefined;
}

@@ -152,4 +152,4 @@

interface SyncResultComplete<Content extends {}> {
push?: ReplicationResultComplete<Content>;
pull?: ReplicationResultComplete<Content>;
push?: ReplicationResultComplete<Content> | undefined;
pull?: ReplicationResultComplete<Content> | undefined;
}

@@ -156,0 +156,0 @@ }

{
"name": "@types/pouchdb-replication",
"version": "6.4.2",
"version": "6.4.3",
"description": "TypeScript definitions for pouchdb-replication",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pouchdb-replication",
"license": "MIT",

@@ -19,6 +20,7 @@ "contributors": [

"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/pouchdb-replication"
},

@@ -30,4 +32,4 @@ "scripts": {},

},
"typesPublisherContentHash": "47d9be0ba60bae10687bb2e2dc54c257268cb0f865ab41afc9e48d2db515df63",
"typeScriptVersion": "2.3"
"typesPublisherContentHash": "cf2185458db599c08636abc19df37673629a108627acd0c9bded013ce9cc53f4",
"typeScriptVersion": "3.6"
}

@@ -5,13 +5,13 @@ # Installation

# Summary
This package contains type definitions for pouchdb-replication ( https://pouchdb.com/ ).
This package contains type definitions for pouchdb-replication (https://pouchdb.com/).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pouchdb-replication
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pouchdb-replication.
Additional Details
* Last updated: Wed, 13 Feb 2019 21:04:44 GMT
* Dependencies: @types/pouchdb-core, @types/pouchdb-find
### Additional Details
* Last updated: Wed, 07 Jul 2021 17:02:35 GMT
* Dependencies: [@types/pouchdb-core](https://npmjs.com/package/@types/pouchdb-core), [@types/pouchdb-find](https://npmjs.com/package/@types/pouchdb-find)
* Global values: none
# Credits
These definitions were written by Jakub Navratil <https://github.com/trubit>, Sebastián Ramírez <https://github.com/tiangolo>.
These definitions were written by [Jakub Navratil](https://github.com/trubit), and [Sebastián Ramírez](https://github.com/tiangolo).

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc