couchdb-web-node-plugin 1.0.783 → 1.0.784
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/helper.js +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
- package/type.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "couchdb-web-node-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.784",
|
|
4
4
|
"description": "A couchdb server, model instance conflict handler, rest api, authentication, session management, schema validator and model relation guarantee for webNode.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"rimraf": "^6.1.2",
|
|
91
91
|
"typescript-eslint": "^8.48.0",
|
|
92
92
|
"web-node": "^1.0.562",
|
|
93
|
-
"weboptimizer": "^2.0.
|
|
93
|
+
"weboptimizer": "^2.0.1627"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
96
|
"@babel/runtime": "*",
|
package/type.d.ts
CHANGED
|
@@ -317,6 +317,7 @@ export type Configuration<ConfigurationType = Mapping<unknown>> = BaseConfigurat
|
|
|
317
317
|
export interface CouchDB<Type extends object = Mapping<unknown>> {
|
|
318
318
|
changesStream: ChangesStream;
|
|
319
319
|
lastChangesSequenceIdentifier?: number | string;
|
|
320
|
+
reinitializeMaterializedViews?: () => Promise<void>;
|
|
320
321
|
updateMaterializedViewsChangesStream?: ChangesStream;
|
|
321
322
|
lastUpdateMaterializedViewsChangesSequenceIdentifier?: number | string;
|
|
322
323
|
connection: Connection<Type>;
|