@legalplace/models-v3-types 3.5.1 → 3.6.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.
- package/index.ts +10 -9
- 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";
|
|
@@ -414,6 +414,7 @@ export interface VariableV3 {
|
|
|
414
414
|
| "eval"
|
|
415
415
|
| "hour"
|
|
416
416
|
| "email"
|
|
417
|
+
| "user_email"
|
|
417
418
|
| "mask";
|
|
418
419
|
/**
|
|
419
420
|
* Variable's grantLevel
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legalplace/models-v3-types",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.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
|
+
}
|