@erp-galoper/types 1.0.1466 → 1.0.1467

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 +46 -17
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26252,7 +26252,11 @@ export interface components {
26252
26252
  tags: components["schemas"]["TagSchema"][];
26253
26253
  family?: components["schemas"]["FamilySchema"] | null;
26254
26254
  brand: components["schemas"]["BrandSchema"] | null;
26255
- category?: components["schemas"]["CategorySchema"] | null;
26255
+ /**
26256
+ * Categories
26257
+ * @default []
26258
+ */
26259
+ categories: components["schemas"]["CategorySchema"][];
26256
26260
  /**
26257
26261
  * Specs
26258
26262
  * @default []
@@ -26497,7 +26501,11 @@ export interface components {
26497
26501
  tags: components["schemas"]["TagSchema"][];
26498
26502
  family?: components["schemas"]["FamilySchema"] | null;
26499
26503
  brand: components["schemas"]["BrandSchema"] | null;
26500
- category?: components["schemas"]["CategorySchema"] | null;
26504
+ /**
26505
+ * Categories
26506
+ * @default []
26507
+ */
26508
+ categories: components["schemas"]["CategorySchema"][];
26501
26509
  /**
26502
26510
  * Specs
26503
26511
  * @default []
@@ -27049,10 +27057,10 @@ export interface components {
27049
27057
  /** Brand */
27050
27058
  brand?: number | null;
27051
27059
  /**
27052
- * Category
27053
- * @description - category must be a leaf node (cannot have child categories)
27060
+ * Categories
27061
+ * @default []
27054
27062
  */
27055
- category?: number | null;
27063
+ categories: number[];
27056
27064
  /**
27057
27065
  * Specs
27058
27066
  * @default []
@@ -27283,10 +27291,11 @@ export interface components {
27283
27291
  /** Brand */
27284
27292
  brand?: number | null;
27285
27293
  /**
27286
- * Category
27287
- * @description - category must be a leaf node (cannot have child categories)
27294
+ * Categories
27295
+ * @description get categories from api/v1/inventory/categories/?type=item
27296
+ * @default []
27288
27297
  */
27289
- category?: number | null;
27298
+ categories: number[];
27290
27299
  /**
27291
27300
  * Specs
27292
27301
  * @default []
@@ -27639,10 +27648,11 @@ export interface components {
27639
27648
  /** Brand */
27640
27649
  brand?: number | null;
27641
27650
  /**
27642
- * Category
27643
- * @description - category must be a leaf node (cannot have child categories)
27651
+ * Categories
27652
+ * @description get categories from api/v1/inventory/categories/?type=item
27653
+ * @default []
27644
27654
  */
27645
- category?: number | null;
27655
+ categories: number[];
27646
27656
  /**
27647
27657
  * Specs
27648
27658
  * @default []
@@ -30842,7 +30852,11 @@ export interface components {
30842
30852
  skuCode?: string | null;
30843
30853
  family?: components["schemas"]["CommonFamilySchema"] | null;
30844
30854
  brand?: components["schemas"]["CommonBrandSchema"] | null;
30845
- category?: components["schemas"]["CommonCategorySchema"] | null;
30855
+ /**
30856
+ * Categories
30857
+ * @default []
30858
+ */
30859
+ categories: components["schemas"]["CommonCategorySchema"][];
30846
30860
  /** Returnableitem */
30847
30861
  returnableItem: boolean;
30848
30862
  trackInventoryBy: components["schemas"]["TrackInventoryBy"] | null;
@@ -43240,7 +43254,11 @@ export interface components {
43240
43254
  skuCode?: string | null;
43241
43255
  family?: components["schemas"]["CommonFamilySchema"] | null;
43242
43256
  brand?: components["schemas"]["CommonBrandSchema"] | null;
43243
- category?: components["schemas"]["CommonCategorySchema"] | null;
43257
+ /**
43258
+ * Categories
43259
+ * @default []
43260
+ */
43261
+ categories: components["schemas"]["CommonCategorySchema"][];
43244
43262
  /**
43245
43263
  * Isinventorytracked
43246
43264
  * @default false
@@ -54798,7 +54816,11 @@ export interface components {
54798
54816
  skuCode?: string | null;
54799
54817
  family?: components["schemas"]["CommonFamilySchema"] | null;
54800
54818
  brand?: components["schemas"]["CommonBrandSchema"] | null;
54801
- category?: components["schemas"]["CommonCategorySchema"] | null;
54819
+ /**
54820
+ * Categories
54821
+ * @default []
54822
+ */
54823
+ categories: components["schemas"]["CommonCategorySchema"][];
54802
54824
  /** Tags */
54803
54825
  tags?: components["schemas"]["TagSchema"][] | null;
54804
54826
  /**
@@ -54944,8 +54966,11 @@ export interface components {
54944
54966
  description?: string | null;
54945
54967
  /** Name */
54946
54968
  name: string;
54947
- /** Category */
54948
- category?: string | null;
54969
+ /**
54970
+ * Categories
54971
+ * @default []
54972
+ */
54973
+ categories: components["schemas"]["CommonCategorySchema"][];
54949
54974
  /** Family */
54950
54975
  family?: string | null;
54951
54976
  /** Brand */
@@ -55497,7 +55522,11 @@ export interface components {
55497
55522
  */
55498
55523
  SalesByItemSchema: {
55499
55524
  item: components["schemas"]["ItemSummarySchema"];
55500
- category?: components["schemas"]["CategorySummarySchema"] | null;
55525
+ /**
55526
+ * Categories
55527
+ * @default []
55528
+ */
55529
+ categories: components["schemas"]["CategorySummarySchema"][];
55501
55530
  brand?: components["schemas"]["BrandSummarySchema"] | null;
55502
55531
  family?: components["schemas"]["FamilySummarySchema"] | null;
55503
55532
  /** Quantitysold */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1466",
3
+ "version": "1.0.1467",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],