@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.
- package/openapi.ts +10 -0
- 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 []
|