@erp-galoper/types 1.0.1781 → 1.0.1783

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 +13 -23
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -48846,19 +48846,6 @@ export interface components {
48846
48846
  /** Items */
48847
48847
  items: components["schemas"]["SalesItemTotal"][];
48848
48848
  };
48849
- /** CommissionLevelSharedSchema */
48850
- CommissionLevelSharedSchema: {
48851
- /**
48852
- * Id
48853
- * Format: uuid
48854
- */
48855
- id: string;
48856
- /** Name */
48857
- name: string;
48858
- /** Commissionvalue */
48859
- commissionValue: number;
48860
- currency: components["schemas"]["CurrencySummaryInfo"] | null;
48861
- };
48862
48849
  /** CustomerBranchSharedSchema */
48863
48850
  CustomerBranchSharedSchema: {
48864
48851
  /** Id */
@@ -48937,7 +48924,6 @@ export interface components {
48937
48924
  * @default []
48938
48925
  */
48939
48926
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
48940
- commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
48941
48927
  /**
48942
48928
  * Subtotal
48943
48929
  * @description This field is a number representing gross subtotal for the item
@@ -49052,7 +49038,6 @@ export interface components {
49052
49038
  * @default []
49053
49039
  */
49054
49040
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
49055
- commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
49056
49041
  /** @description visible when project module is active */
49057
49042
  project: components["schemas"]["ProjectSummaryInfo"] | null;
49058
49043
  /**
@@ -49492,7 +49477,6 @@ export interface components {
49492
49477
  * @default []
49493
49478
  */
49494
49479
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
49495
- commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
49496
49480
  /** @description visible when project module is active */
49497
49481
  project: components["schemas"]["ProjectSummaryInfo"] | null;
49498
49482
  /**
@@ -51260,7 +51244,6 @@ export interface components {
51260
51244
  * @default []
51261
51245
  */
51262
51246
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
51263
- commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
51264
51247
  /**
51265
51248
  * Subtotal
51266
51249
  * @description This field is a number representing gross subtotal for the item.
@@ -51405,8 +51388,6 @@ export interface components {
51405
51388
  * @default []
51406
51389
  */
51407
51390
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
51408
- /** @description Details about the commission level for the sales order, if applicable. */
51409
- commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
51410
51391
  /** @description visible when project module is active */
51411
51392
  project: components["schemas"]["ProjectSummaryInfo"] | null;
51412
51393
  /**
@@ -51923,8 +51904,6 @@ export interface components {
51923
51904
  * @default []
51924
51905
  */
51925
51906
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
51926
- /** @description Details about the commission level for the sales order, if applicable. */
51927
- commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
51928
51907
  /** @description visible when project module is active */
51929
51908
  project: components["schemas"]["ProjectSummaryInfo"] | null;
51930
51909
  /**
@@ -52157,8 +52136,6 @@ export interface components {
52157
52136
  * @default []
52158
52137
  */
52159
52138
  promotionsAndOffers: components["schemas"]["PromotionsAndOffersSharedSchema"][];
52160
- /** @description Details about the commission level for the sales order, if applicable. */
52161
- commission: components["schemas"]["CommissionLevelSharedSchema"] | null;
52162
52139
  /** @description visible when project module is active */
52163
52140
  project: components["schemas"]["ProjectSummaryInfo"] | null;
52164
52141
  /**
@@ -53207,6 +53184,19 @@ export interface components {
53207
53184
  /** Password */
53208
53185
  password?: string;
53209
53186
  };
53187
+ /** CommissionLevelSharedSchema */
53188
+ CommissionLevelSharedSchema: {
53189
+ /**
53190
+ * Id
53191
+ * Format: uuid
53192
+ */
53193
+ id: string;
53194
+ /** Name */
53195
+ name: string;
53196
+ /** Commissionvalue */
53197
+ commissionValue: number;
53198
+ currency: components["schemas"]["CurrencySummaryInfo"] | null;
53199
+ };
53210
53200
  /**
53211
53201
  * OnlineOrderSummarySchema
53212
53202
  * @description Summary of online order linked to a sales invoice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1781",
3
+ "version": "1.0.1783",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],