@etainabl/nodejs-sdk 1.3.80 → 1.3.82
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.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -471,6 +471,10 @@ interface CompanySettings<IDType = ObjectId | string> {
|
|
|
471
471
|
invoiceValidationSettings?: CompanyInvoiceValidationSettings<IDType>;
|
|
472
472
|
autoInvoiceValidation?: boolean;
|
|
473
473
|
splitInvoices?: boolean;
|
|
474
|
+
invoiceFilename?: {
|
|
475
|
+
legalNameMaxLength?: number;
|
|
476
|
+
siteNameMaxLength?: number;
|
|
477
|
+
};
|
|
474
478
|
}
|
|
475
479
|
interface Company<IDType = ObjectId | string> {
|
|
476
480
|
_id: IDType;
|
package/dist/index.d.ts
CHANGED
|
@@ -471,6 +471,10 @@ interface CompanySettings<IDType = ObjectId | string> {
|
|
|
471
471
|
invoiceValidationSettings?: CompanyInvoiceValidationSettings<IDType>;
|
|
472
472
|
autoInvoiceValidation?: boolean;
|
|
473
473
|
splitInvoices?: boolean;
|
|
474
|
+
invoiceFilename?: {
|
|
475
|
+
legalNameMaxLength?: number;
|
|
476
|
+
siteNameMaxLength?: number;
|
|
477
|
+
};
|
|
474
478
|
}
|
|
475
479
|
interface Company<IDType = ObjectId | string> {
|
|
476
480
|
_id: IDType;
|