@erp-galoper/types 1.0.611 → 1.0.613
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 +7 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26380,8 +26380,10 @@ export interface components {
|
|
|
26380
26380
|
email: string | null;
|
|
26381
26381
|
/** Company */
|
|
26382
26382
|
company: string;
|
|
26383
|
-
/**
|
|
26384
|
-
|
|
26383
|
+
/** Phone1 */
|
|
26384
|
+
phone1?: string | null;
|
|
26385
|
+
/** Phone2 */
|
|
26386
|
+
phone2?: string | null;
|
|
26385
26387
|
/**
|
|
26386
26388
|
* Attachments
|
|
26387
26389
|
* @default []
|
|
@@ -27553,7 +27555,7 @@ export interface components {
|
|
|
27553
27555
|
/**
|
|
27554
27556
|
* Id
|
|
27555
27557
|
* Format: uuid
|
|
27556
|
-
* @example
|
|
27558
|
+
* @example 2c008312-d367-40e7-bb25-80c9b6f474e1
|
|
27557
27559
|
*/
|
|
27558
27560
|
id: string;
|
|
27559
27561
|
/**
|
|
@@ -34700,12 +34702,12 @@ export interface components {
|
|
|
34700
34702
|
* Itempackage
|
|
34701
34703
|
* @description choose from the item's itemPackage
|
|
34702
34704
|
*/
|
|
34703
|
-
itemPackage
|
|
34705
|
+
itemPackage?: string | null;
|
|
34704
34706
|
/**
|
|
34705
34707
|
* Unitpackage
|
|
34706
34708
|
* @description This field is required when the package is selected
|
|
34707
34709
|
*/
|
|
34708
|
-
unitPackage
|
|
34710
|
+
unitPackage?: number | null;
|
|
34709
34711
|
/** Discount */
|
|
34710
34712
|
discount: number;
|
|
34711
34713
|
/**
|