@erp-galoper/types 1.0.208 → 1.0.210
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 +11 -22
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -19927,6 +19927,15 @@ export interface components {
|
|
|
19927
19927
|
/** Lastname */
|
|
19928
19928
|
lastName: string;
|
|
19929
19929
|
};
|
|
19930
|
+
/** RegionCommonSchema */
|
|
19931
|
+
RegionCommonSchema: {
|
|
19932
|
+
/** Id */
|
|
19933
|
+
id: number;
|
|
19934
|
+
/** Country */
|
|
19935
|
+
country: string;
|
|
19936
|
+
/** Region */
|
|
19937
|
+
region: string;
|
|
19938
|
+
};
|
|
19930
19939
|
/** RegionSharedSchema */
|
|
19931
19940
|
RegionSharedSchema: {
|
|
19932
19941
|
/** Id */
|
|
@@ -19961,8 +19970,7 @@ export interface components {
|
|
|
19961
19970
|
users: components["schemas"]["userCommon"][];
|
|
19962
19971
|
/** Islocal */
|
|
19963
19972
|
isLocal: boolean;
|
|
19964
|
-
|
|
19965
|
-
region: string;
|
|
19973
|
+
region: components["schemas"]["RegionCommonSchema"];
|
|
19966
19974
|
};
|
|
19967
19975
|
/** RetrieveCity */
|
|
19968
19976
|
RetrieveCity: {
|
|
@@ -21877,11 +21885,6 @@ export interface components {
|
|
|
21877
21885
|
name: string;
|
|
21878
21886
|
/** Code */
|
|
21879
21887
|
code?: string | null;
|
|
21880
|
-
/**
|
|
21881
|
-
* Startdate
|
|
21882
|
-
* Format: date
|
|
21883
|
-
*/
|
|
21884
|
-
startDate: string;
|
|
21885
21888
|
/** Phone */
|
|
21886
21889
|
phone: string;
|
|
21887
21890
|
/** Mobile */
|
|
@@ -21899,11 +21902,6 @@ export interface components {
|
|
|
21899
21902
|
name?: string;
|
|
21900
21903
|
/** Code */
|
|
21901
21904
|
code?: string | null;
|
|
21902
|
-
/**
|
|
21903
|
-
* Startdate
|
|
21904
|
-
* Format: date
|
|
21905
|
-
*/
|
|
21906
|
-
startDate?: string;
|
|
21907
21905
|
/** Phone */
|
|
21908
21906
|
phone?: string;
|
|
21909
21907
|
/** Mobile */
|
|
@@ -24614,15 +24612,6 @@ export interface components {
|
|
|
24614
24612
|
*/
|
|
24615
24613
|
attachments: string[];
|
|
24616
24614
|
};
|
|
24617
|
-
/** RegionCommonSchema */
|
|
24618
|
-
RegionCommonSchema: {
|
|
24619
|
-
/** Id */
|
|
24620
|
-
id: number;
|
|
24621
|
-
/** Country */
|
|
24622
|
-
country: string;
|
|
24623
|
-
/** Region */
|
|
24624
|
-
region: string;
|
|
24625
|
-
};
|
|
24626
24615
|
/** ChangeContactShipmentInformationSchema */
|
|
24627
24616
|
ChangeContactShipmentInformationSchema: {
|
|
24628
24617
|
/** Index */
|
|
@@ -26515,7 +26504,7 @@ export interface components {
|
|
|
26515
26504
|
/**
|
|
26516
26505
|
* Id
|
|
26517
26506
|
* Format: uuid
|
|
26518
|
-
* @example
|
|
26507
|
+
* @example 55ec3c3f-fd61-49d6-810a-58405f0b230f
|
|
26519
26508
|
*/
|
|
26520
26509
|
id: string;
|
|
26521
26510
|
/**
|