@erp-galoper/main-package 1.0.33 → 1.0.35
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 +7 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -629,7 +629,7 @@ export interface components {
|
|
629
629
|
/** Message */
|
630
630
|
message: string;
|
631
631
|
/** Code */
|
632
|
-
code
|
632
|
+
code?: string | null;
|
633
633
|
[key: string]: unknown;
|
634
634
|
};
|
635
635
|
/** WarehouseSchema */
|
@@ -925,10 +925,14 @@ export interface components {
|
|
925
925
|
};
|
926
926
|
/** ImageSchema */
|
927
927
|
ImageSchema: {
|
928
|
-
|
929
|
-
type: string;
|
928
|
+
type: components["schemas"]["ImageType"];
|
930
929
|
[key: string]: unknown;
|
931
930
|
};
|
931
|
+
/**
|
932
|
+
* ImageType
|
933
|
+
* @enum {string}
|
934
|
+
*/
|
935
|
+
ImageType: "item" | "company" | "user" | "supplier" | "customer";
|
932
936
|
/** currencyCodeOut */
|
933
937
|
currencyCodeOut: {
|
934
938
|
/** Currencycode */
|
package/package.json
CHANGED