@erp-galoper/types 1.0.149 → 1.0.151

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 +23 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20511,6 +20511,8 @@ export interface components {
20511
20511
  family?: components["schemas"]["CommonFamilySchema"] | null;
20512
20512
  brand?: components["schemas"]["CommonBrandSchema"] | null;
20513
20513
  category?: components["schemas"]["CommonCategorySchema"] | null;
20514
+ /** Returnableitem */
20515
+ returnableItem: boolean;
20514
20516
  trackInventoryBy: components["schemas"]["TrackInventoryBy"] | null;
20515
20517
  };
20516
20518
  /** ItemPackageSchema */
@@ -26544,7 +26546,7 @@ export interface components {
26544
26546
  /**
26545
26547
  * Id
26546
26548
  * Format: uuid
26547
- * @example 9f2cd8e0-fe28-478c-b1d5-f225276c4963
26549
+ * @example 7202c0b4-2bb4-4230-a97d-25095915c56a
26548
26550
  */
26549
26551
  id: string;
26550
26552
  /**
@@ -32063,6 +32065,11 @@ export interface components {
32063
32065
  /**
32064
32066
  * Purchaseinvoiceitem
32065
32067
  * Format: uuid
32068
+ * @description
32069
+ * API Endpoints for Purchase Invoice Item Retrieval:
32070
+ * API Routes : /api/v1/purchase/invoices/,access items list
32071
+ * Filters: (quantity - quantityReturned) > 0 and item.returnableItem = true
32072
+ *
32066
32073
  */
32067
32074
  purchaseInvoiceItem: string;
32068
32075
  };
@@ -33537,6 +33544,11 @@ export interface components {
33537
33544
  /**
33538
33545
  * Purchaseinvoiceitem
33539
33546
  * Format: uuid
33547
+ * @description
33548
+ * API Endpoints for Purchase Invoice Item Retrieval:
33549
+ * API Routes : /api/v1/purchase/invoices/,access items list and
33550
+ * Filters: (quantity - quantityReturned) > 0 and item.returnableItem = true
33551
+ *
33540
33552
  */
33541
33553
  purchaseInvoiceItem: string;
33542
33554
  };
@@ -41297,6 +41309,11 @@ export interface components {
41297
41309
  /**
41298
41310
  * Salesinvoiceitem
41299
41311
  * Format: uuid
41312
+ * @description
41313
+ * API Endpoints for Sales Invoice Item Retrieval:
41314
+ * API Routes : /api/v1/sales/invoices/,access items list
41315
+ * Filters: (quantity - quantityReturned) > 0 and item.returnableItem = true
41316
+ *
41300
41317
  */
41301
41318
  salesInvoiceItem: string;
41302
41319
  };
@@ -41662,6 +41679,11 @@ export interface components {
41662
41679
  /**
41663
41680
  * Salesinvoiceitem
41664
41681
  * Format: uuid
41682
+ * @description
41683
+ * API Endpoints for Sales Invoice Item Retrieval:
41684
+ * API Routes : /api/v1/sales/invoices/,access items list
41685
+ * Filters: (quantity - quantityReturned) > 0 and item.returnableItem = true
41686
+ *
41665
41687
  */
41666
41688
  salesInvoiceItem: string;
41667
41689
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.149",
3
+ "version": "1.0.151",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],