@legalplace/models-v3-types 3.2.0 → 3.2.2

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/index.ts +2 -2
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // Type definitions for model v3
2
2
  // TypeScript Version: 2.1
3
3
 
4
- type CONDITION_TYPE = 'selected' | 'not-selected' | 'has-one' | 'at-least-one' | 'has-many' | 'contains' | 'does-not-contain' | '=' | '>' | '<' | '!=' | '>=' | '<=' | '<>' | '==';
4
+ type CONDITION_TYPE = 'selected' | 'not-selected' | 'has-one' | 'at-least-one' | 'has-many' | 'contains' | 'does-not-contain' | '=' | '>' | '<' | '!=' | '>=' | '<=' | '<>' | '==' | 'empty' | 'not-empty';
5
5
  type DATA_MAP = {
6
6
  var: string
7
7
  };
@@ -50,7 +50,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
50
50
  [k: string]: VariableV3;
51
51
  };
52
52
  customization: {
53
- disableAutoDefaut?: boolean;
53
+ disableAutoDefault?: boolean;
54
54
  meta?: ConstumizationMeta
55
55
  };
56
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",