@erp-galoper/types 1.0.852 → 1.0.853

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 +8 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -31808,7 +31808,10 @@ export interface components {
31808
31808
  CreateSupplierPriceListSchema: {
31809
31809
  /** Name */
31810
31810
  name: string;
31811
- /** Supplier */
31811
+ /**
31812
+ * Supplier
31813
+ * @description get suppliers using route /api/v1/suppliers?type=children&isActive=True
31814
+ */
31812
31815
  supplier: number;
31813
31816
  /** Items */
31814
31817
  items: components["schemas"]["CreateSupplierPriceListItemsSchema"][];
@@ -31926,7 +31929,10 @@ export interface components {
31926
31929
  UpdateSupplierPriceListSchema: {
31927
31930
  /** Name */
31928
31931
  name?: string | null;
31929
- /** Supplier */
31932
+ /**
31933
+ * Supplier
31934
+ * @description get suppliers using route /api/v1/suppliers?type=children&isActive=True
31935
+ */
31930
31936
  supplier?: number | null;
31931
31937
  /**
31932
31938
  * Items
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.852",
3
+ "version": "1.0.853",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],