@erp-galoper/types 1.0.1815 → 1.0.1816

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 +30 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -35158,6 +35158,21 @@ export interface components {
35158
35158
  };
35159
35159
  /** CustomerSharedSchema */
35160
35160
  CustomerSharedSchema: {
35161
+ /** Phone1 */
35162
+ phone1?: string | null;
35163
+ /** Phone2 */
35164
+ phone2?: string | null;
35165
+ /** Fax */
35166
+ fax?: string | null;
35167
+ /** Country */
35168
+ country: string | null;
35169
+ /** Postalcode */
35170
+ postalCode?: string | null;
35171
+ city: components["schemas"]["CommonCity"] | null;
35172
+ /** Address */
35173
+ address?: string | null;
35174
+ /** Website */
35175
+ website?: string | null;
35161
35176
  /**
35162
35177
  * Id
35163
35178
  * Format: uuid
@@ -39417,6 +39432,21 @@ export interface components {
39417
39432
  };
39418
39433
  /** ChildSupplierSharedSchema */
39419
39434
  ChildSupplierSharedSchema: {
39435
+ /** Phone1 */
39436
+ phone1?: string | null;
39437
+ /** Phone2 */
39438
+ phone2?: string | null;
39439
+ /** Fax */
39440
+ fax?: string | null;
39441
+ /** Country */
39442
+ country: string | null;
39443
+ /** Postalcode */
39444
+ postalCode?: string | null;
39445
+ city: components["schemas"]["CommonCity"] | null;
39446
+ /** Address */
39447
+ address?: string | null;
39448
+ /** Website */
39449
+ website?: string | null;
39420
39450
  /**
39421
39451
  * Id
39422
39452
  * Format: uuid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1815",
3
+ "version": "1.0.1816",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],