@legalplace/models-v3-types 3.4.46 → 3.4.48
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 +2 -0
- package/package.json +1 -1
- package/schema.json +3 -0
package/index.ts
CHANGED
|
@@ -63,6 +63,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
|
|
|
63
63
|
};
|
|
64
64
|
customization: {
|
|
65
65
|
disableAutoDefault?: boolean;
|
|
66
|
+
disableDownloads?: boolean;
|
|
66
67
|
meta?: ConstumizationMeta
|
|
67
68
|
};
|
|
68
69
|
}
|
|
@@ -547,6 +548,7 @@ export interface FDFInputsV3 {
|
|
|
547
548
|
export interface FDFBoxesV3 {
|
|
548
549
|
name: string
|
|
549
550
|
page: number
|
|
551
|
+
value: string
|
|
550
552
|
rect: {
|
|
551
553
|
x: number
|
|
552
554
|
y: number
|
package/package.json
CHANGED