@erp-galoper/types 1.0.841 → 1.0.843

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 +6 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25947,6 +25947,8 @@ export interface components {
25947
25947
  firstName: string;
25948
25948
  /** Lastname */
25949
25949
  lastName: string;
25950
+ /** Accountnumber */
25951
+ accountNumber: string | null;
25950
25952
  /** Note */
25951
25953
  note?: string | null;
25952
25954
  /**
@@ -26182,6 +26184,8 @@ export interface components {
26182
26184
  id: number;
26183
26185
  /** Company */
26184
26186
  company: string;
26187
+ /** Accountnumber */
26188
+ accountNumber: string | null;
26185
26189
  /** Financialnumber */
26186
26190
  financialNumber?: string | null;
26187
26191
  /** Note */
@@ -26577,6 +26581,8 @@ export interface components {
26577
26581
  firstName?: string | null;
26578
26582
  /** Lastname */
26579
26583
  lastName?: string | null;
26584
+ /** Accountnumber */
26585
+ accountNumber: string | null;
26580
26586
  /** Walkinpos */
26581
26587
  walkInPos?: boolean | null;
26582
26588
  /** Shipmentinformation */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.841",
3
+ "version": "1.0.843",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],