@erp-galoper/types 1.0.242 → 1.0.244

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 +18 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -21707,9 +21707,15 @@ export interface components {
21707
21707
  address: string;
21708
21708
  /** Branchid */
21709
21709
  branchId: number;
21710
- /** Showroom */
21710
+ /**
21711
+ * Showroom
21712
+ * @description one show room warehouse is allowed per branch
21713
+ */
21711
21714
  showRoom?: boolean | null;
21712
- /** Default */
21715
+ /**
21716
+ * Default
21717
+ * @description one default warehouse is allowed per branch
21718
+ */
21713
21719
  default: boolean;
21714
21720
  };
21715
21721
  /** BranchInfo */
@@ -21767,9 +21773,15 @@ export interface components {
21767
21773
  address?: string | null;
21768
21774
  /** Branchid */
21769
21775
  branchId: number;
21770
- /** Showroom */
21776
+ /**
21777
+ * Showroom
21778
+ * @description one show room warehouse is allowed per branch
21779
+ */
21771
21780
  showRoom?: boolean | null;
21772
- /** Default */
21781
+ /**
21782
+ * Default
21783
+ * @description one default warehouse is allowed per branch
21784
+ */
21773
21785
  default?: boolean | null;
21774
21786
  };
21775
21787
  /** RetrieveWarehouse */
@@ -26622,7 +26634,7 @@ export interface components {
26622
26634
  /**
26623
26635
  * Id
26624
26636
  * Format: uuid
26625
- * @example 9af34c52-a22a-41bf-a401-7048984b0c21
26637
+ * @example 67da4bfc-cc82-4221-9075-6b1105c55b02
26626
26638
  */
26627
26639
  id: string;
26628
26640
  /**
@@ -51855,7 +51867,7 @@ export interface operations {
51855
51867
  };
51856
51868
  requestBody: {
51857
51869
  content: {
51858
- "application/json": components["schemas"]["BrandSchema"];
51870
+ "application/json": components["schemas"]["CreateBrandSchema"];
51859
51871
  };
51860
51872
  };
51861
51873
  responses: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.242",
3
+ "version": "1.0.244",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],