@erp-galoper/types 1.0.1928 → 1.0.1930

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 +10 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -14654,7 +14654,7 @@ export interface paths {
14654
14654
  * Get Sales Price List
14655
14655
  * @description Endpoint for getting an individual sales price list
14656
14656
  * Responses:
14657
- * - 200: Streaming JSON response (``items[].item`` is full item via batch enrichment, no variant children)
14657
+ * - 200: JSON response (if fullItem=True, items[].item is full item via batch enrichment, no variant children)
14658
14658
  *
14659
14659
  * - 403: permissionDenied
14660
14660
  * - noBranchAccess
@@ -14663,6 +14663,10 @@ export interface paths {
14663
14663
  * - 404: salesPriceListDoesNotExist
14664
14664
  * - 500: serverError
14665
14665
  *
14666
+ * Query Parameters:
14667
+ * - fullItem: If True, include full item details with images, attributes, etc. (slower). Default: False (faster).
14668
+ * - includeLiveCost: If True, calculate live costs for all items (slower). Default: False (faster).
14669
+ * - includeBarcodes: If True, include barcodes for items. Default: True.
14666
14670
  *
14667
14671
  * Permission key: `salespricelist = ['view']`
14668
14672
  */
@@ -93073,7 +93077,11 @@ export interface operations {
93073
93077
  };
93074
93078
  sales_price_list_views_get_sales_price_list: {
93075
93079
  parameters: {
93076
- query?: never;
93080
+ query?: {
93081
+ fullItem?: boolean;
93082
+ includeLiveCost?: boolean;
93083
+ includeBarcodes?: boolean;
93084
+ };
93077
93085
  header?: never;
93078
93086
  path: {
93079
93087
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1928",
3
+ "version": "1.0.1930",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],