@erp-galoper/types 1.0.1043 → 1.0.1045

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 +0 -8
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -39792,7 +39792,6 @@ export interface components {
39792
39792
  paymentMethod: components["schemas"]["PaymentMethodSharedSchema"] | null;
39793
39793
  /** Commissionvalue */
39794
39794
  commissionValue: number;
39795
- commissionValueType: components["schemas"]["CommissionValueTypes"];
39796
39795
  /** Salesvolumevalue */
39797
39796
  salesVolumeValue: number | null;
39798
39797
  currency: components["schemas"]["CurrencySummaryInfo"] | null;
@@ -39814,11 +39813,6 @@ export interface components {
39814
39813
  * @enum {string}
39815
39814
  */
39816
39815
  CommissionStructureEnum: "fixed" | "category" | "tiered" | "productBased" | "paymentBased";
39817
- /**
39818
- * CommissionValueTypes
39819
- * @enum {string}
39820
- */
39821
- CommissionValueTypes: "percentage" | "amount";
39822
39816
  /** ItemCategorySummaryInfo */
39823
39817
  ItemCategorySummaryInfo: {
39824
39818
  /** Id */
@@ -39843,7 +39837,6 @@ export interface components {
39843
39837
  * @description if commissionValueType is percentage, commissionValue should be greater than zero and less than or equal 100
39844
39838
  */
39845
39839
  commissionValue: number;
39846
- commissionValueType: components["schemas"]["CommissionValueTypes"];
39847
39840
  /**
39848
39841
  * Salesvolumevalue
39849
39842
  * @description visible when structure = tiered, required when salesTierType exist
@@ -40016,7 +40009,6 @@ export interface components {
40016
40009
  id?: string;
40017
40010
  /** Commissionvalue */
40018
40011
  commissionValue: number;
40019
- commissionValueType: components["schemas"]["CommissionValueTypes"];
40020
40012
  /**
40021
40013
  * Salesvolumevalue
40022
40014
  * @description visible when structure = tiered, required when salesTierType exist
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1043",
3
+ "version": "1.0.1045",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],