@erp-galoper/types 1.0.120 → 1.0.121

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 +11 -4
  2. 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 a7bdb878-5394-499f-aef0-d00f2c02876e
26546
+ * @example d62239af-f032-44df-86b2-50487239eebf
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
- /** Candelete */
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?: number[];
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
- /** Candelete */
36330
+ /**
36331
+ * Candelete
36332
+ * @default false
36333
+ */
36327
36334
  canDelete: boolean;
36328
36335
  };
36329
36336
  /** ListPackageTypeSchema */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.120",
3
+ "version": "1.0.121",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],