couchdb-web-node-plugin 1.0.767 → 1.0.768

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "couchdb-web-node-plugin",
3
- "version": "1.0.767",
3
+ "version": "1.0.768",
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
@@ -432,6 +432,7 @@ export interface CommonScope<ObjectType extends object, Type, AttachmentType ext
432
432
  oldDocument: null | PartialFullDocument<ObjectType, AdditionalPropertiesType>;
433
433
  parentNames: Array<string>;
434
434
  pathDescription: string;
435
+ updateStrategy: UpdateStrategy;
435
436
  }
436
437
  export interface PropertyScope<ObjectType extends object, Type, PropertyType, AttachmentType extends Attachment, AdditionalSpecifications extends object, AdditionalPropertiesType> extends CommonScope<ObjectType, PropertyType, AttachmentType, AdditionalSpecifications, AdditionalPropertiesType> {
437
438
  name: string;
@@ -439,7 +440,6 @@ export interface PropertyScope<ObjectType extends object, Type, PropertyType, At
439
440
  oldValue?: Type;
440
441
  propertySpecification: PropertySpecification<Type, AdditionalSpecifications>;
441
442
  attachmentsTarget?: Mapping<AttachmentType | null>;
442
- updateStrategy: UpdateStrategy;
443
443
  }
444
444
  export interface EvaluationResult<ObjectType extends object, Type, PropertyType, AttachmentType extends Attachment, AdditionalSpecifications extends object, AdditionalPropertiesType, Scope = (BasicScope<ObjectType, AttachmentType, AdditionalSpecifications, AdditionalPropertiesType> & CommonScope<ObjectType, PropertyType, AttachmentType, AdditionalSpecifications, AdditionalPropertiesType>)> {
445
445
  code: string;