@erp-galoper/main-package 1.0.98 → 1.0.100
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 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -698,6 +698,11 @@ export interface components {
|
|
698
698
|
address: string;
|
699
699
|
|
700
700
|
};
|
701
|
+
/**
|
702
|
+
* CompanyType
|
703
|
+
* @enum {string}
|
704
|
+
*/
|
705
|
+
CompanyType: "sarl" | "sal";
|
701
706
|
/** CurrencyName */
|
702
707
|
CurrencyName: {
|
703
708
|
/** Name */
|
@@ -759,6 +764,7 @@ export interface components {
|
|
759
764
|
website?: string | null;
|
760
765
|
/** Image */
|
761
766
|
image: string;
|
767
|
+
type?: components["schemas"]["CompanyType"] | null;
|
762
768
|
|
763
769
|
};
|
764
770
|
/** CompanySchema */
|
@@ -807,6 +813,7 @@ export interface components {
|
|
807
813
|
website?: string | null;
|
808
814
|
/** Image */
|
809
815
|
image: string;
|
816
|
+
type?: components["schemas"]["CompanyType"] | null;
|
810
817
|
|
811
818
|
};
|
812
819
|
/** UpdateCompany */
|
@@ -843,6 +850,7 @@ export interface components {
|
|
843
850
|
currency?: string | null;
|
844
851
|
/** Country */
|
845
852
|
country?: string | null;
|
853
|
+
type?: components["schemas"]["CompanyType"] | null;
|
846
854
|
|
847
855
|
};
|
848
856
|
/** UpdateBranch */
|
package/package.json
CHANGED