@erp-galoper/types 1.0.1064 → 1.0.1066

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 +38 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -21854,6 +21854,20 @@ export interface components {
21854
21854
  /** Value */
21855
21855
  value: string;
21856
21856
  };
21857
+ /** ImageSchema */
21858
+ ImageSchema: {
21859
+ /**
21860
+ * Link
21861
+ * @description URL of the image file
21862
+ */
21863
+ link: string;
21864
+ /**
21865
+ * Default
21866
+ * @description Whether this is the default image
21867
+ * @default false
21868
+ */
21869
+ default: boolean;
21870
+ };
21857
21871
  /**
21858
21872
  * ItemCommissionCalculation
21859
21873
  * @enum {string}
@@ -21945,6 +21959,12 @@ export interface components {
21945
21959
  * @default /default/default-product.jpg
21946
21960
  */
21947
21961
  image: string | null;
21962
+ /**
21963
+ * Images
21964
+ * @description List of images for this item
21965
+ * @default []
21966
+ */
21967
+ images: components["schemas"]["ImageSchema"][] | null;
21948
21968
  /** Name */
21949
21969
  name: string;
21950
21970
  /** Shortname */
@@ -22151,6 +22171,12 @@ export interface components {
22151
22171
  * @default /default/default-product.jpg
22152
22172
  */
22153
22173
  image: string | null;
22174
+ /**
22175
+ * Images
22176
+ * @description List of images for this item
22177
+ * @default []
22178
+ */
22179
+ images: components["schemas"]["ImageSchema"][] | null;
22154
22180
  /** Name */
22155
22181
  name: string;
22156
22182
  /** Shortname */
@@ -22705,6 +22731,12 @@ export interface components {
22705
22731
  * @default default/default-product.jpg
22706
22732
  */
22707
22733
  image: string | null;
22734
+ /**
22735
+ * Images
22736
+ * @description List of images with default selection, only one image should be default, other images should be false
22737
+ * @default []
22738
+ */
22739
+ images: components["schemas"]["ImageSchema"][] | null;
22708
22740
  /** Name */
22709
22741
  name: string;
22710
22742
  /**
@@ -23018,6 +23050,12 @@ export interface components {
23018
23050
  PatchItemSchema: {
23019
23051
  /** Image */
23020
23052
  image?: string | null;
23053
+ /**
23054
+ * Images
23055
+ * @description List of images with default selection, only one image should be default, other images should be false
23056
+ * @default []
23057
+ */
23058
+ images: components["schemas"]["ImageSchema"][] | null;
23021
23059
  /** Name */
23022
23060
  name?: string | null;
23023
23061
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1064",
3
+ "version": "1.0.1066",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],