@erp-galoper/types 1.0.120 → 1.0.122
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 +11 -4
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26543,7 +26543,7 @@ export interface components {
|
|
|
26543
26543
|
/**
|
|
26544
26544
|
* Id
|
|
26545
26545
|
* Format: uuid
|
|
26546
|
-
* @example
|
|
26546
|
+
* @example 7a2bcd7a-794a-42a0-9582-64a766f896b9
|
|
26547
26547
|
*/
|
|
26548
26548
|
id: string;
|
|
26549
26549
|
/**
|
|
@@ -36113,7 +36113,10 @@ export interface components {
|
|
|
36113
36113
|
description: string | null;
|
|
36114
36114
|
/** Notes */
|
|
36115
36115
|
notes: string | null;
|
|
36116
|
-
/**
|
|
36116
|
+
/**
|
|
36117
|
+
* Candelete
|
|
36118
|
+
* @default false
|
|
36119
|
+
*/
|
|
36117
36120
|
canDelete: boolean;
|
|
36118
36121
|
/** Items */
|
|
36119
36122
|
items: components["schemas"]["SalesPriceListItemSchema"][];
|
|
@@ -36161,8 +36164,9 @@ export interface components {
|
|
|
36161
36164
|
/**
|
|
36162
36165
|
* Taxes
|
|
36163
36166
|
* @description Only visible when price list type is retail, list of tax ids to be applied to the item
|
|
36167
|
+
* @default []
|
|
36164
36168
|
*/
|
|
36165
|
-
taxes
|
|
36169
|
+
taxes: number[];
|
|
36166
36170
|
/**
|
|
36167
36171
|
* Minprice
|
|
36168
36172
|
* @description The minimum price of the item. Required when using the 'manual' pricing method with 'range' pricing type.
|
|
@@ -36323,7 +36327,10 @@ export interface components {
|
|
|
36323
36327
|
description: string | null;
|
|
36324
36328
|
/** Notes */
|
|
36325
36329
|
notes: string | null;
|
|
36326
|
-
/**
|
|
36330
|
+
/**
|
|
36331
|
+
* Candelete
|
|
36332
|
+
* @default false
|
|
36333
|
+
*/
|
|
36327
36334
|
canDelete: boolean;
|
|
36328
36335
|
};
|
|
36329
36336
|
/** ListPackageTypeSchema */
|