@erp-galoper/types 1.0.1986 → 1.0.1987
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 +13 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -34261,6 +34261,7 @@ export interface components {
|
|
|
34261
34261
|
currencies: components["schemas"]["CommonCurrency"][];
|
|
34262
34262
|
/** Children */
|
|
34263
34263
|
children: components["schemas"]["CustomerChildDetailSchema"][];
|
|
34264
|
+
parent?: components["schemas"]["CustomerParentSchema"] | null;
|
|
34264
34265
|
/**
|
|
34265
34266
|
* Companyregistrationnumber
|
|
34266
34267
|
* @description visible when customer type is company
|
|
@@ -34300,6 +34301,18 @@ export interface components {
|
|
|
34300
34301
|
/** Results */
|
|
34301
34302
|
results: components["schemas"]["CustomerForListSchema"][];
|
|
34302
34303
|
};
|
|
34304
|
+
/** CustomerParentSchema */
|
|
34305
|
+
CustomerParentSchema: {
|
|
34306
|
+
/**
|
|
34307
|
+
* Id
|
|
34308
|
+
* Format: uuid
|
|
34309
|
+
*/
|
|
34310
|
+
id: string;
|
|
34311
|
+
/** Name */
|
|
34312
|
+
name: string;
|
|
34313
|
+
/** Accountnumber */
|
|
34314
|
+
accountNumber: string;
|
|
34315
|
+
};
|
|
34303
34316
|
/** CustomerShippingAddressSchema */
|
|
34304
34317
|
CustomerShippingAddressSchema: {
|
|
34305
34318
|
/** Id */
|