@erp-galoper/types 1.0.1532 → 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.
Files changed (2) hide show
  1. package/openapi.ts +8 -0
  2. 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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1532",
3
+ "version": "1.0.1533",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],