couchdb-web-node-plugin 1.0.548 → 1.0.549

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +19 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "couchdb-web-node-plugin",
3
- "version": "1.0.548",
3
+ "version": "1.0.549",
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
@@ -68,35 +68,38 @@ export interface PropertySpecification {
68
68
  conflictingConstraintExpression?: Constraint | null;
69
69
  constraintExecution?: Constraint | null;
70
70
  constraintExpression?: Constraint | null;
71
+ onCreateExecution?: null | string;
72
+ onCreateExpression?: null | string;
73
+ onUpdateExecution?: null | string;
74
+ onUpdateExpression?: null | string;
75
+ regularExpressionPattern?: null | string;
76
+ invertedRegularExpressionPattern?: null | string;
71
77
  contentTypeRegularExpressionPattern?: null | string;
72
- default?: unknown;
73
- emptyEqualsToNull?: boolean | null;
74
- index?: boolean | null;
75
78
  invertedContentTypeRegularExpressionPattern?: null | string;
76
- invertedRegularExpressionPattern?: null | string;
77
79
  maximum?: null | number;
78
- maximumAggregatedSize?: null | number;
79
- maximumLength?: null | number;
80
- maximumNumber?: null | number;
81
- maximumSize?: null | number;
82
80
  minimum?: null | number;
81
+ maximumAggregatedSize?: null | number;
83
82
  minimumAggregatedSize?: null | number;
83
+ maximumLength?: null | number;
84
84
  minimumLength?: null | number;
85
+ maximumNumber?: null | number;
85
86
  minimumNumber?: null | number;
87
+ maximumSize?: null | number;
86
88
  minimumSize?: null | number;
87
89
  mutable?: boolean | null;
88
90
  nullable?: boolean | null;
89
- onCreateExecution?: null | string;
90
- onCreateExpression?: null | string;
91
- oldName?: Array<string> | null | string;
92
- onUpdateExecution?: null | string;
93
- onUpdateExpression?: null | string;
94
- regularExpressionPattern?: null | string;
91
+ writable?: boolean | null;
95
92
  selection?: Array<unknown> | Array<SelectionMapping> | Mapping<unknown> | null;
96
- trim?: boolean | null;
97
93
  type?: TypeSpecification | null;
94
+ default?: unknown;
95
+ emptyEqualsToNull?: boolean | null;
96
+ trim?: boolean | null;
97
+ name?: string;
98
+ declaration?: string;
99
+ description?: string;
100
+ index?: boolean | null;
101
+ oldName?: Array<string> | null | string;
98
102
  value?: unknown;
99
- writable?: boolean | null;
100
103
  }
101
104
  export interface FileSpecification extends PropertySpecification {
102
105
  fileName?: PropertySpecification;