@erp-galoper/types 1.0.207 → 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 -10
  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,6 +19970,7 @@ export interface components {
19961
19970
  users: components["schemas"]["userCommon"][];
19962
19971
  /** Islocal */
19963
19972
  isLocal: boolean;
19973
+ region: components["schemas"]["RegionCommonSchema"];
19964
19974
  };
19965
19975
  /** RetrieveCity */
19966
19976
  RetrieveCity: {
@@ -24612,15 +24622,6 @@ export interface components {
24612
24622
  */
24613
24623
  attachments: string[];
24614
24624
  };
24615
- /** RegionCommonSchema */
24616
- RegionCommonSchema: {
24617
- /** Id */
24618
- id: number;
24619
- /** Country */
24620
- country: string;
24621
- /** Region */
24622
- region: string;
24623
- };
24624
24625
  /** ChangeContactShipmentInformationSchema */
24625
24626
  ChangeContactShipmentInformationSchema: {
24626
24627
  /** Index */
@@ -26513,7 +26514,7 @@ export interface components {
26513
26514
  /**
26514
26515
  * Id
26515
26516
  * Format: uuid
26516
- * @example 65d21d37-69d2-4b2e-940e-56488088ada1
26517
+ * @example e0990108-75cb-48da-889a-84508e1fd23e
26517
26518
  */
26518
26519
  id: string;
26519
26520
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.207",
3
+ "version": "1.0.209",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],