@erp-galoper/types 1.0.1859 → 1.0.1860

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 +10 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -33412,6 +33412,10 @@ export interface components {
33412
33412
  group: components["schemas"]["CustomerGroupInfoSchema"];
33413
33413
  city?: components["schemas"]["CommonCity"] | null;
33414
33414
  region: components["schemas"]["RegionCommonSchema"] | null;
33415
+ /** Country */
33416
+ country?: string | null;
33417
+ /** Address */
33418
+ address?: string | null;
33415
33419
  /**
33416
33420
  * Attachments
33417
33421
  * @default []
@@ -34393,6 +34397,12 @@ export interface components {
34393
34397
  phone1?: string | null;
34394
34398
  /** Phone2 */
34395
34399
  phone2?: string | null;
34400
+ city?: components["schemas"]["CommonCity"] | null;
34401
+ region: components["schemas"]["RegionCommonSchema"] | null;
34402
+ /** Country */
34403
+ country?: string | null;
34404
+ /** Address */
34405
+ address?: string | null;
34396
34406
  /**
34397
34407
  * Attachments
34398
34408
  * @default []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1859",
3
+ "version": "1.0.1860",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],