couchdb-web-node-plugin 1.0.575 → 1.0.576
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/package.json +1 -1
- package/type.d.ts +1 -1
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.576",
|
|
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",
|
package/type.d.ts
CHANGED
|
@@ -98,7 +98,7 @@ export interface PropertySpecification<Type = unknown> {
|
|
|
98
98
|
oldName?: Array<string> | null | string;
|
|
99
99
|
value?: null | Type;
|
|
100
100
|
}
|
|
101
|
-
export interface FileSpecification extends PropertySpecification<
|
|
101
|
+
export interface FileSpecification<Type = Attachment> extends PropertySpecification<Type> {
|
|
102
102
|
fileName?: PropertySpecification<string>;
|
|
103
103
|
}
|
|
104
104
|
export interface BaseModel {
|