@erp-galoper/types 1.0.1539 → 1.0.1540

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 +17 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -38374,6 +38374,21 @@ export interface components {
38374
38374
  };
38375
38375
  /** ChildSupplierSharedSchema */
38376
38376
  ChildSupplierSharedSchema: {
38377
+ /** Phone1 */
38378
+ phone1?: string | null;
38379
+ /** Phone2 */
38380
+ phone2?: string | null;
38381
+ /** Fax */
38382
+ fax?: string | null;
38383
+ /** Country */
38384
+ country: string | null;
38385
+ /** Postalcode */
38386
+ postalCode?: string | null;
38387
+ city: components["schemas"]["CommonCity"] | null;
38388
+ /** Address */
38389
+ address?: string | null;
38390
+ /** Website */
38391
+ website?: string | null;
38377
38392
  /** Id */
38378
38393
  id: number;
38379
38394
  /** Name */
@@ -38381,6 +38396,8 @@ export interface components {
38381
38396
  /** Accountnumber */
38382
38397
  accountNumber: string;
38383
38398
  currency: components["schemas"]["CurrencySummaryInfo"];
38399
+ /** Financialnumber */
38400
+ financialNumber?: string | null;
38384
38401
  };
38385
38402
  /** CostSchema */
38386
38403
  CostSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1539",
3
+ "version": "1.0.1540",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],