@openbox/shared-types 0.3.19 → 0.3.21
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.
|
@@ -6,11 +6,11 @@ export type InvoicesDocumentsLayoutHelpers = {
|
|
|
6
6
|
type: 'text' | 'date' | 'money';
|
|
7
7
|
name: string;
|
|
8
8
|
};
|
|
9
|
-
type InvoicesDocumentsLayoutResolution = {
|
|
9
|
+
export type InvoicesDocumentsLayoutResolution = {
|
|
10
10
|
width: number;
|
|
11
11
|
height: number;
|
|
12
12
|
};
|
|
13
|
-
type InvoicesDocumentsLayoutHeader = {
|
|
13
|
+
export type InvoicesDocumentsLayoutHeader = {
|
|
14
14
|
fontSize: number;
|
|
15
15
|
authorization: InvoicesDocumentsLayoutHelpers;
|
|
16
16
|
sequence: InvoicesDocumentsLayoutHelpers;
|
|
@@ -31,7 +31,7 @@ type InvoicesDocumentsLayoutHeader = {
|
|
|
31
31
|
state: InvoicesDocumentsLayoutHelpers;
|
|
32
32
|
city: InvoicesDocumentsLayoutHelpers;
|
|
33
33
|
};
|
|
34
|
-
type InvoicesDocumentsLayoutDetails = {
|
|
34
|
+
export type InvoicesDocumentsLayoutDetails = {
|
|
35
35
|
fontSize: number;
|
|
36
36
|
height: number;
|
|
37
37
|
y: number;
|
|
@@ -42,7 +42,7 @@ type InvoicesDocumentsLayoutDetails = {
|
|
|
42
42
|
vExenta: Omit<InvoicesDocumentsLayoutHelpers, 'y'>;
|
|
43
43
|
vGravada: Omit<InvoicesDocumentsLayoutHelpers, 'y'>;
|
|
44
44
|
};
|
|
45
|
-
type InvoicesDocumentsLayoutTotals = {
|
|
45
|
+
export type InvoicesDocumentsLayoutTotals = {
|
|
46
46
|
fontSize: number;
|
|
47
47
|
sum: Omit<InvoicesDocumentsLayoutHelpers, 'l'>;
|
|
48
48
|
taxes: Omit<InvoicesDocumentsLayoutHelpers, 'l'>;
|
package/package.json
CHANGED
|
@@ -6,11 +6,11 @@ export type InvoicesDocumentsLayoutHelpers = {
|
|
|
6
6
|
type: 'text' | 'date' | 'money'
|
|
7
7
|
name: string
|
|
8
8
|
}
|
|
9
|
-
type InvoicesDocumentsLayoutResolution = {
|
|
9
|
+
export type InvoicesDocumentsLayoutResolution = {
|
|
10
10
|
width: number
|
|
11
11
|
height: number
|
|
12
12
|
}
|
|
13
|
-
type InvoicesDocumentsLayoutHeader = {
|
|
13
|
+
export type InvoicesDocumentsLayoutHeader = {
|
|
14
14
|
fontSize: number
|
|
15
15
|
authorization: InvoicesDocumentsLayoutHelpers
|
|
16
16
|
sequence: InvoicesDocumentsLayoutHelpers
|
|
@@ -31,7 +31,7 @@ type InvoicesDocumentsLayoutHeader = {
|
|
|
31
31
|
state: InvoicesDocumentsLayoutHelpers
|
|
32
32
|
city: InvoicesDocumentsLayoutHelpers
|
|
33
33
|
}
|
|
34
|
-
type InvoicesDocumentsLayoutDetails = {
|
|
34
|
+
export type InvoicesDocumentsLayoutDetails = {
|
|
35
35
|
fontSize: number
|
|
36
36
|
height: number
|
|
37
37
|
y: number
|
|
@@ -42,7 +42,7 @@ type InvoicesDocumentsLayoutDetails = {
|
|
|
42
42
|
vExenta: Omit<InvoicesDocumentsLayoutHelpers, 'y'>
|
|
43
43
|
vGravada: Omit<InvoicesDocumentsLayoutHelpers, 'y'>
|
|
44
44
|
}
|
|
45
|
-
type InvoicesDocumentsLayoutTotals = {
|
|
45
|
+
export type InvoicesDocumentsLayoutTotals = {
|
|
46
46
|
fontSize: number
|
|
47
47
|
sum: Omit<InvoicesDocumentsLayoutHelpers, 'l'>
|
|
48
48
|
taxes: Omit<InvoicesDocumentsLayoutHelpers, 'l'>
|