@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.
- package/openapi.ts +50 -11
- 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
|
-
/**
|
|
27497
|
-
|
|
27496
|
+
/** PriceListItemSchema */
|
|
27497
|
+
PriceListItemSchema: {
|
|
27498
27498
|
/**
|
|
27499
|
-
*
|
|
27499
|
+
* Id
|
|
27500
27500
|
* Format: uuid
|
|
27501
27501
|
*/
|
|
27502
|
-
|
|
27503
|
-
/**
|
|
27504
|
-
|
|
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:
|
|
27529
|
+
minPrice: number | null;
|
|
27507
27530
|
/** Maxprice */
|
|
27508
|
-
maxPrice:
|
|
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
|
-
*
|
|
27515
|
-
*
|
|
27552
|
+
* Pricelistid
|
|
27553
|
+
* Format: uuid
|
|
27516
27554
|
*/
|
|
27517
|
-
|
|
27555
|
+
priceListId: string;
|
|
27556
|
+
priceListItem?: components["schemas"]["PriceListItemSchema"] | null;
|
|
27518
27557
|
};
|
|
27519
27558
|
/** QuantityGroupSchema */
|
|
27520
27559
|
QuantityGroupSchema: {
|