@legalplace/models-v3-types 3.4.45 → 3.4.47
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 +3 -2
- package/package.json +1 -1
- package/schema.json +3 -0
package/index.ts
CHANGED
|
@@ -535,8 +535,8 @@ export interface FDFInputsV3 {
|
|
|
535
535
|
hour?: 'HH' | 'MM',
|
|
536
536
|
email?: 'ADDRESS' | 'PROVIDER',
|
|
537
537
|
fragment?: {
|
|
538
|
-
from
|
|
539
|
-
to
|
|
538
|
+
from?: number
|
|
539
|
+
to?: number
|
|
540
540
|
}
|
|
541
541
|
}[]
|
|
542
542
|
}
|
|
@@ -547,6 +547,7 @@ export interface FDFInputsV3 {
|
|
|
547
547
|
export interface FDFBoxesV3 {
|
|
548
548
|
name: string
|
|
549
549
|
page: number
|
|
550
|
+
value: string
|
|
550
551
|
rect: {
|
|
551
552
|
x: number
|
|
552
553
|
y: number
|
package/package.json
CHANGED