@legalplace/models-v3-types 3.5.0 → 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 +4 -0
  2. package/package.json +1 -1
  3. package/schema.json +4 -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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
package/schema.json CHANGED
@@ -2095,6 +2095,10 @@
2095
2095
  "documents": {
2096
2096
  "additionalProperties": {
2097
2097
  "properties": {
2098
+ "fallbackName": {
2099
+ "description": "Document's fallback name",
2100
+ "type": "string"
2101
+ },
2098
2102
  "name": {
2099
2103
  "description": "Document's name",
2100
2104
  "type": "string"