@erp-galoper/types 1.0.853 → 1.0.855

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 +20 -10
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -31322,26 +31322,36 @@ export interface components {
31322
31322
  * Allowlowerexchangevalue
31323
31323
  * @default false
31324
31324
  */
31325
- allowLowerExchangeValue: boolean | null;
31325
+ allowLowerExchangeValue: boolean;
31326
31326
  /**
31327
31327
  * Paymentdifferencethreshold
31328
31328
  * @default 0.01
31329
31329
  */
31330
31330
  paymentDifferenceThreshold: number | null;
31331
31331
  /** Invoiceheader */
31332
- invoiceHeader: string | null;
31332
+ invoiceHeader?: string | null;
31333
31333
  /** Invoicefooter */
31334
- invoiceFooter: string | null;
31335
- reportGroupBy: components["schemas"]["ReportGroupBy"] | null;
31336
- /** Printcount */
31337
- printCount: number | null;
31338
- /** Printonhold */
31339
- printOnHold: boolean | null;
31334
+ invoiceFooter?: string | null;
31335
+ /** @default category */
31336
+ reportGroupBy: components["schemas"]["ReportGroupBy"];
31337
+ /**
31338
+ * Printcount
31339
+ * @default 0
31340
+ */
31341
+ printCount: number;
31342
+ /**
31343
+ * Printonhold
31344
+ * @default false
31345
+ */
31346
+ printOnHold: boolean;
31340
31347
  /**
31341
31348
  * Currenciesoninvoice
31342
- * @default []
31349
+ * @description company currency should be added as default
31350
+ * @default [
31351
+ * 1
31352
+ * ]
31343
31353
  */
31344
- currenciesOnInvoice: number[] | null;
31354
+ currenciesOnInvoice: number[];
31345
31355
  };
31346
31356
  /** RetrieveAppointmentSettingSchema */
31347
31357
  RetrieveAppointmentSettingSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.853",
3
+ "version": "1.0.855",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],