@erp-galoper/types 1.0.187 → 1.0.189

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 -6
  2. 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 8492f729-563b-4043-9171-320dddbbf7cf
26503
+ * @example 15ed135e-e74a-453c-a0dd-76d9442363bb
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.187",
3
+ "version": "1.0.189",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],