@erp-galoper/types 1.0.186 → 1.0.188
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 -6
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26500,7 +26500,7 @@ export interface components {
|
|
|
26500
26500
|
/**
|
|
26501
26501
|
* Id
|
|
26502
26502
|
* Format: uuid
|
|
26503
|
-
* @example
|
|
26503
|
+
* @example 32f58de8-845e-423e-9c7e-30239619b8c9
|
|
26504
26504
|
*/
|
|
26505
26505
|
id: string;
|
|
26506
26506
|
/**
|
|
@@ -39685,6 +39685,11 @@ export interface components {
|
|
|
39685
39685
|
/** Results */
|
|
39686
39686
|
results: components["schemas"]["SalesOrderSchema"][];
|
|
39687
39687
|
};
|
|
39688
|
+
/**
|
|
39689
|
+
* DiscountType
|
|
39690
|
+
* @enum {string}
|
|
39691
|
+
*/
|
|
39692
|
+
DiscountType: "amount" | "percentage";
|
|
39688
39693
|
/**
|
|
39689
39694
|
* PurchaseCreditNoteAppliesOn
|
|
39690
39695
|
* @enum {string}
|
|
@@ -39704,6 +39709,7 @@ export interface components {
|
|
|
39704
39709
|
unitPrice: number | null;
|
|
39705
39710
|
/** Discount */
|
|
39706
39711
|
discount: number | null;
|
|
39712
|
+
discountType: components["schemas"]["DiscountType"] | null;
|
|
39707
39713
|
};
|
|
39708
39714
|
/**
|
|
39709
39715
|
* PurchaseCreditNoteReasonsSchema
|
|
@@ -39759,11 +39765,6 @@ export interface components {
|
|
|
39759
39765
|
/** Creditnoteitems */
|
|
39760
39766
|
creditNoteItems: components["schemas"]["PurchaseCreditNoteItemDetailSchema"][];
|
|
39761
39767
|
};
|
|
39762
|
-
/**
|
|
39763
|
-
* DiscountType
|
|
39764
|
-
* @enum {string}
|
|
39765
|
-
*/
|
|
39766
|
-
DiscountType: "amount" | "percentage";
|
|
39767
39768
|
/** PurchaseCreditNoteCreateSchema */
|
|
39768
39769
|
PurchaseCreditNoteCreateSchema: {
|
|
39769
39770
|
/** Password */
|
|
@@ -42922,6 +42923,7 @@ export interface components {
|
|
|
42922
42923
|
unitPrice: number | null;
|
|
42923
42924
|
/** Discount */
|
|
42924
42925
|
discount: number | null;
|
|
42926
|
+
discountType: components["schemas"]["DiscountType"] | null;
|
|
42925
42927
|
};
|
|
42926
42928
|
/**
|
|
42927
42929
|
* SalesCreditNoteReasonsSchema
|