@juhuu/sdk-ts 1.2.120 → 1.2.121
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/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1911,9 +1911,9 @@ declare namespace JUHUU {
|
|
1911
1911
|
};
|
1912
1912
|
export interface Internal extends Base {
|
1913
1913
|
type: "internal";
|
1914
|
-
legalName: string;
|
1915
|
-
emailSignature: string;
|
1916
|
-
billingAddress: Address;
|
1914
|
+
legalName: string | null;
|
1915
|
+
emailSignature: string | null;
|
1916
|
+
billingAddress: Address | null;
|
1917
1917
|
vat: string;
|
1918
1918
|
invoiceImage: string;
|
1919
1919
|
invoiceNumberPrefix: string;
|
package/dist/index.d.ts
CHANGED
@@ -1911,9 +1911,9 @@ declare namespace JUHUU {
|
|
1911
1911
|
};
|
1912
1912
|
export interface Internal extends Base {
|
1913
1913
|
type: "internal";
|
1914
|
-
legalName: string;
|
1915
|
-
emailSignature: string;
|
1916
|
-
billingAddress: Address;
|
1914
|
+
legalName: string | null;
|
1915
|
+
emailSignature: string | null;
|
1916
|
+
billingAddress: Address | null;
|
1917
1917
|
vat: string;
|
1918
1918
|
invoiceImage: string;
|
1919
1919
|
invoiceNumberPrefix: string;
|