@legalplace/models-v3-types 3.4.51 → 3.5.1

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 (3) hide show
  1. package/index.ts +8 -0
  2. package/package.json +1 -1
  3. package/schema.json +8 -0
package/index.ts CHANGED
@@ -53,6 +53,10 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
53
53
  * Document's name
54
54
  */
55
55
  name: string;
56
+ /**
57
+ * Document's fallback name
58
+ */
59
+ fallbackName?: string;
56
60
  /**
57
61
  * Document's sections list
58
62
  */
@@ -290,6 +294,10 @@ export interface OptionV3 {
290
294
  * In case of a `repeated` option, this defines the multiple's id that the loop should be linked to
291
295
  */
292
296
  repeatOption?: number;
297
+ /**
298
+ * Hidden option
299
+ */
300
+ hidden?: boolean;
293
301
  /**
294
302
  * Validator PARAMS
295
303
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.4.51",
3
+ "version": "3.5.1",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
package/schema.json CHANGED
@@ -1607,6 +1607,10 @@
1607
1607
  "description": "The html content of the helper block",
1608
1608
  "type": "string"
1609
1609
  },
1610
+ "hidden": {
1611
+ "description": "Hidden option",
1612
+ "type": "boolean"
1613
+ },
1610
1614
  "id": {
1611
1615
  "description": "Option's id",
1612
1616
  "type": "number"
@@ -2091,6 +2095,10 @@
2091
2095
  "documents": {
2092
2096
  "additionalProperties": {
2093
2097
  "properties": {
2098
+ "fallbackName": {
2099
+ "description": "Document's fallback name",
2100
+ "type": "string"
2101
+ },
2094
2102
  "name": {
2095
2103
  "description": "Document's name",
2096
2104
  "type": "string"