@erp-galoper/types 1.0.1531 → 1.0.1533
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/openapi.ts +8 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -30286,6 +30286,8 @@ export interface components {
|
|
|
30286
30286
|
invoicePostingMethod: components["schemas"]["InvoicePostingMethod"];
|
|
30287
30287
|
/** Autocreatebankaccountforbranches */
|
|
30288
30288
|
autoCreateBankAccountForBranches: boolean;
|
|
30289
|
+
/** Pdffootercontent */
|
|
30290
|
+
pdfFooterContent: string | null;
|
|
30289
30291
|
};
|
|
30290
30292
|
/**
|
|
30291
30293
|
* RoundingTypes
|
|
@@ -30333,6 +30335,12 @@ export interface components {
|
|
|
30333
30335
|
* - This field cannot be changed after creation of bank account
|
|
30334
30336
|
*/
|
|
30335
30337
|
autoCreateBankAccountForBranches: boolean;
|
|
30338
|
+
/**
|
|
30339
|
+
* Pdffootercontent
|
|
30340
|
+
* @description Footer text to be displayed at the bottom of documents (Invoice, Payments, Credit Note, Refund)
|
|
30341
|
+
* @default
|
|
30342
|
+
*/
|
|
30343
|
+
pdfFooterContent: string;
|
|
30336
30344
|
};
|
|
30337
30345
|
/** RegionSchema */
|
|
30338
30346
|
RegionSchema: {
|