@erp-galoper/types 1.0.208 → 1.0.209

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 +11 -12
  2. 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
- /** Region */
19965
- region: string;
19973
+ region: components["schemas"]["RegionCommonSchema"];
19966
19974
  };
19967
19975
  /** RetrieveCity */
19968
19976
  RetrieveCity: {
@@ -24614,15 +24622,6 @@ export interface components {
24614
24622
  */
24615
24623
  attachments: string[];
24616
24624
  };
24617
- /** RegionCommonSchema */
24618
- RegionCommonSchema: {
24619
- /** Id */
24620
- id: number;
24621
- /** Country */
24622
- country: string;
24623
- /** Region */
24624
- region: string;
24625
- };
24626
24625
  /** ChangeContactShipmentInformationSchema */
24627
24626
  ChangeContactShipmentInformationSchema: {
24628
24627
  /** Index */
@@ -26515,7 +26514,7 @@ export interface components {
26515
26514
  /**
26516
26515
  * Id
26517
26516
  * Format: uuid
26518
- * @example 486e1a25-372e-4cf0-9198-c852d49f81ed
26517
+ * @example e0990108-75cb-48da-889a-84508e1fd23e
26519
26518
  */
26520
26519
  id: string;
26521
26520
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.208",
3
+ "version": "1.0.209",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],