@erp-galoper/types 1.0.1537 → 1.0.1539

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 +22 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -34088,6 +34088,21 @@ export interface components {
34088
34088
  InvoiceStatus: "in_progress" | "on_hold" | "voided" | "completed";
34089
34089
  /** CustomerSharedSchema */
34090
34090
  CustomerSharedSchema: {
34091
+ /** Phone1 */
34092
+ phone1?: string | null;
34093
+ /** Phone2 */
34094
+ phone2?: string | null;
34095
+ /** Fax */
34096
+ fax?: string | null;
34097
+ /** Country */
34098
+ country: string | null;
34099
+ /** Postalcode */
34100
+ postalCode?: string | null;
34101
+ city: components["schemas"]["CommonCity"] | null;
34102
+ /** Address */
34103
+ address?: string | null;
34104
+ /** Website */
34105
+ website?: string | null;
34091
34106
  /** Id */
34092
34107
  id: number;
34093
34108
  /** Name */
@@ -34103,6 +34118,8 @@ export interface components {
34103
34118
  * @default []
34104
34119
  */
34105
34120
  currencies: components["schemas"]["CurrencySummaryInfo"][];
34121
+ /** Financialnumber */
34122
+ financialNumber?: string | null;
34106
34123
  };
34107
34124
  /** GiftReceiptItemSummarySchema */
34108
34125
  GiftReceiptItemSummarySchema: {
@@ -39797,6 +39814,11 @@ export interface components {
39797
39814
  * @default 0
39798
39815
  */
39799
39816
  discount: number;
39817
+ /**
39818
+ * Discountedtotal
39819
+ * @default 0
39820
+ */
39821
+ discountedTotal: number;
39800
39822
  /** Usddiscountedtotal */
39801
39823
  usdDiscountedTotal: number;
39802
39824
  /** Companydiscountedtotal */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1537",
3
+ "version": "1.0.1539",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],