@legalplace/models-v3-types 3.5.1 → 3.7.0

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 +13 -9
  2. package/package.json +2 -2
package/index.ts CHANGED
@@ -82,33 +82,33 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
82
82
  [key: string]: boolean | undefined;
83
83
  private?: boolean;
84
84
  };
85
- documentStyle?: {
85
+ documentStyle?: {
86
86
  styles?: {
87
87
  Normal?: {
88
88
  color?: string;
89
89
  indent?: number;
90
- },
90
+ };
91
91
  headingOne?: {
92
92
  color?: string;
93
93
  indent?: number;
94
- },
94
+ };
95
95
  headingTwo?: {
96
96
  color?: string;
97
97
  indent?: number;
98
- },
98
+ };
99
99
  headingThree?: {
100
100
  color?: string;
101
101
  indent?: number;
102
- },
102
+ };
103
103
  headingFour?: {
104
104
  color?: string;
105
105
  indent?: number;
106
- }
107
- },
106
+ };
107
+ };
108
108
  titlesNumbering?: {
109
109
  enabled: boolean;
110
- type: "ARTICLE-FIRST" | "SIMPLE"
111
- }
110
+ type: "ARTICLE-FIRST" | "SIMPLE";
111
+ };
112
112
  };
113
113
  conditions?: ConditionV3;
114
114
  grantLevel?: "ADMIN" | "MANAGER" | "USER" | "GUEST";
@@ -124,6 +124,9 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
124
124
  customization: {
125
125
  disableAutoDefault?: boolean;
126
126
  meta?: ConstumizationMeta;
127
+ dataStorage?: {
128
+ extendedDuration?: boolean;
129
+ }
127
130
  };
128
131
  }
129
132
 
@@ -414,6 +417,7 @@ export interface VariableV3 {
414
417
  | "eval"
415
418
  | "hour"
416
419
  | "email"
420
+ | "user_email"
417
421
  | "mask";
418
422
  /**
419
423
  * Variable's grantLevel
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.5.1",
3
+ "version": "3.7.0",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
@@ -11,4 +11,4 @@
11
11
  "devDependencies": {
12
12
  "typescript-json-schema": "^0.43.0"
13
13
  }
14
- }
14
+ }