@erp-galoper/types 1.0.1932 → 1.0.1933

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 +50 -11
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -27493,28 +27493,67 @@ export interface components {
27493
27493
  * @enum {string}
27494
27494
  */
27495
27495
  PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
27496
- /** PricesFromPriceListSchema */
27497
- PricesFromPriceListSchema: {
27496
+ /** PriceListItemSchema */
27497
+ PriceListItemSchema: {
27498
27498
  /**
27499
- * Pricelistid
27499
+ * Id
27500
27500
  * Format: uuid
27501
27501
  */
27502
- priceListId: string;
27503
- /** Pricelistitemid */
27504
- priceListItemId: string | null;
27502
+ id: string;
27503
+ /**
27504
+ * Cost
27505
+ * @description This field is a number
27506
+ */
27507
+ cost: string | null;
27508
+ /**
27509
+ * Livecost
27510
+ * @description This field is a number representing the current live cost of the item
27511
+ */
27512
+ liveCost?: string | null;
27513
+ /** Unitprice */
27514
+ unitPrice: number | null;
27515
+ /** Pendingunitprice */
27516
+ pendingUnitPrice: number | null;
27517
+ /**
27518
+ * Posunitprice
27519
+ * @description only visible when price list type is retail
27520
+ */
27521
+ posUnitPrice: number | null;
27522
+ /**
27523
+ * Taxes
27524
+ * @description List of taxes applied to the item
27525
+ * @default []
27526
+ */
27527
+ taxes: components["schemas"]["TaxSharedSchema"][];
27505
27528
  /** Minprice */
27506
- minPrice: string | null;
27529
+ minPrice: number | null;
27507
27530
  /** Maxprice */
27508
- maxPrice: string | null;
27531
+ maxPrice: number | null;
27532
+ /** Pendingminprice */
27533
+ pendingMinPrice: number | null;
27534
+ /** Pendingmaxprice */
27535
+ pendingMaxPrice: number | null;
27509
27536
  /** Minprofit */
27510
27537
  minProfit: number | null;
27511
27538
  /** Maxprofit */
27512
27539
  maxProfit: number | null;
27540
+ /** Pendingminprofit */
27541
+ pendingMinProfit: number | null;
27542
+ /** Pendingmaxprofit */
27543
+ pendingMaxProfit: number | null;
27544
+ /** Profit */
27545
+ profit: number | null;
27546
+ /** Pendingprofit */
27547
+ pendingProfit: number | null;
27548
+ };
27549
+ /** PricesFromPriceListSchema */
27550
+ PricesFromPriceListSchema: {
27513
27551
  /**
27514
- * Taxes
27515
- * @default []
27552
+ * Pricelistid
27553
+ * Format: uuid
27516
27554
  */
27517
- taxes: components["schemas"]["TaxSharedSchema"][];
27555
+ priceListId: string;
27556
+ priceListItem?: components["schemas"]["PriceListItemSchema"] | null;
27518
27557
  };
27519
27558
  /** QuantityGroupSchema */
27520
27559
  QuantityGroupSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1932",
3
+ "version": "1.0.1933",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],