@legalplace/models-v3-types 3.4.4 → 3.4.41

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 +1 -0
  2. package/package.json +1 -1
  3. package/schema.json +3 -0
package/index.ts CHANGED
@@ -34,6 +34,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
34
34
  */
35
35
  pdf?: {
36
36
  id: string
37
+ filename: string
37
38
  form: FDFFormV3
38
39
  thumbnails: string[]
39
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.4.4",
3
+ "version": "3.4.41",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
package/schema.json CHANGED
@@ -2089,6 +2089,9 @@
2089
2089
  "pdf": {
2090
2090
  "description": "Document's PDF link",
2091
2091
  "properties": {
2092
+ "filename": {
2093
+ "type": "string"
2094
+ },
2092
2095
  "form": {
2093
2096
  "$ref": "#/definitions/FDFFormV3"
2094
2097
  },