@erp-galoper/types 1.0.1337 → 1.0.1339
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 +8 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -631,6 +631,7 @@ export interface paths {
|
|
|
631
631
|
* - familyDoesNotExist
|
|
632
632
|
* - brandDoesNotExist
|
|
633
633
|
* - categoryDoesNotExist
|
|
634
|
+
* - categoryIsNotLeaf
|
|
634
635
|
* - unitOfMeasureDoesNotExist
|
|
635
636
|
* - widthUnitOfMeasureDoesNotExist
|
|
636
637
|
* - heightUnitOfMeasureDoesNotExist
|
|
@@ -760,6 +761,7 @@ export interface paths {
|
|
|
760
761
|
* - familyDoesNotExist
|
|
761
762
|
* - brandDoesNotExist
|
|
762
763
|
* - categoryDoesNotExist
|
|
764
|
+
* - categoryIsNotLeaf
|
|
763
765
|
* - unitOfMeasureDoesNotExist
|
|
764
766
|
* - widthUnitOfMeasureDoesNotExist
|
|
765
767
|
* - heightUnitOfMeasureDoesNotExist
|
|
@@ -26399,7 +26401,10 @@ export interface components {
|
|
|
26399
26401
|
family?: number | null;
|
|
26400
26402
|
/** Brand */
|
|
26401
26403
|
brand?: number | null;
|
|
26402
|
-
/**
|
|
26404
|
+
/**
|
|
26405
|
+
* Category
|
|
26406
|
+
* @description - category must be a leaf node (cannot have child categories)
|
|
26407
|
+
*/
|
|
26403
26408
|
category?: number | null;
|
|
26404
26409
|
/**
|
|
26405
26410
|
* Specs
|
|
@@ -26632,7 +26637,7 @@ export interface components {
|
|
|
26632
26637
|
brand?: number | null;
|
|
26633
26638
|
/**
|
|
26634
26639
|
* Category
|
|
26635
|
-
* @description
|
|
26640
|
+
* @description - category must be a leaf node (cannot have child categories)
|
|
26636
26641
|
*/
|
|
26637
26642
|
category?: number | null;
|
|
26638
26643
|
/**
|
|
@@ -26988,7 +26993,7 @@ export interface components {
|
|
|
26988
26993
|
brand?: number | null;
|
|
26989
26994
|
/**
|
|
26990
26995
|
* Category
|
|
26991
|
-
* @description
|
|
26996
|
+
* @description - category must be a leaf node (cannot have child categories)
|
|
26992
26997
|
*/
|
|
26993
26998
|
category?: number | null;
|
|
26994
26999
|
/**
|